<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
	<channel>
		<title><![CDATA[Miniware Forum]]></title>
		<link>http://www.miniware.net/forum/index.php</link>
		<description><![CDATA[The most recent topics at Miniware Forum.]]></description>
		<lastBuildDate>Mon, 02 Feb 2009 13:49:31 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Finding Computer problem]]></title>
			<link>http://www.miniware.net/forum/viewtopic.php?id=160&amp;action=new</link>
			<description><![CDATA[<p>Hello,</p><p>I tried this program but i can&#039;t get it to work.</p><p>first, my phone is a Samsung S3600 and my computer is an MSI laptop (GX700) with integrated bluetooth and Microsoft stack.</p><p>The phone can&#039;t find my computer when it searchs for server.<br />Of course, my computer is discoverable (the phone finds my computer with &quot;normal&quot; bluetooth communication)<br />The server is launched</p><p>i tried several versions (1.8, 1.7) and several programs like this one nothing works.</p><p>i don&#039;t know what to do next...</p><p>sorry for poor english and thanks in advance.</p>]]></description>
			<author><![CDATA[null@example.com (Thibz)]]></author>
			<pubDate>Mon, 02 Feb 2009 13:49:31 +0000</pubDate>
			<guid>http://www.miniware.net/forum/viewtopic.php?id=160&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[Several question]]></title>
			<link>http://www.miniware.net/forum/viewtopic.php?id=155&amp;action=new</link>
			<description><![CDATA[<p>nikos. . .<br />what remote bluetooth this work at windows vista? because i have tried and the result can not. if can what must i do so that can work in windows vista.</p><p>thx.</p>]]></description>
			<author><![CDATA[null@example.com (themob)]]></author>
			<pubDate>Fri, 29 Aug 2008 06:36:07 +0000</pubDate>
			<guid>http://www.miniware.net/forum/viewtopic.php?id=155&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[Nikos Help me - Mouse Problem V1.6]]></title>
			<link>http://www.miniware.net/forum/viewtopic.php?id=152&amp;action=new</link>
			<description><![CDATA[<p>hello Nikos.</p><p>i&#039;ve tried&nbsp; to compile source version 1.6 with netbeans6.0 and successed. but cant run, i tried changes win32lib.dll version 1.6 with&nbsp; wind32lib.dll version 1.4. boom i success run the program.<br />but i&#039;ve problem with mouse control. mouse control doesnt work.. <br />thx Nikos. very nice version 1.6</p>]]></description>
			<author><![CDATA[null@example.com (themob)]]></author>
			<pubDate>Thu, 24 Jul 2008 19:06:17 +0000</pubDate>
			<guid>http://www.miniware.net/forum/viewtopic.php?id=152&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[New version released]]></title>
			<link>http://www.miniware.net/forum/viewtopic.php?id=144&amp;action=new</link>
			<description><![CDATA[<p>Bluetooth remote control ver 1.6 has been released. It includes</p><p>*Redisgn of the classes concerning bluetooth communication<br />*Bug fixes<br />*View the screen under mouse cursor</p>]]></description>
			<author><![CDATA[null@example.com (nikos)]]></author>
			<pubDate>Sat, 31 May 2008 11:04:37 +0000</pubDate>
			<guid>http://www.miniware.net/forum/viewtopic.php?id=144&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[Eclipse]]></title>
			<link>http://www.miniware.net/forum/viewtopic.php?id=140&amp;action=new</link>
			<description><![CDATA[<p>Can you help me? I want to build the server with Eclipse ide. I managed to run one JNI example, but with the BT Remote server I can&#039;t write the makefile. Any help? Thanks.</p>]]></description>
			<author><![CDATA[null@example.com (sbp)]]></author>
			<pubDate>Sat, 03 May 2008 17:50:56 +0000</pubDate>
			<guid>http://www.miniware.net/forum/viewtopic.php?id=140&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[JavaME HTML render]]></title>
			<link>http://www.miniware.net/forum/viewtopic.php?id=138&amp;action=new</link>
			<description><![CDATA[<p>Hi. I want to make it possible to browse internet on the phone using a PC&#039;s connection through bluetooth. The communication part is ready, now I need a j2me browser which I can use in my midlet to render the html pages. Can someone help me to find something like that. Library or open source browser. I like [url]http://www.j2mehtml.com/[/url] but it seems I can&#039;t use it.</p>]]></description>
			<author><![CDATA[null@example.com (sbp)]]></author>
			<pubDate>Sun, 27 Apr 2008 16:26:06 +0000</pubDate>
			<guid>http://www.miniware.net/forum/viewtopic.php?id=138&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[Record store question]]></title>
			<link>http://www.miniware.net/forum/viewtopic.php?id=136&amp;action=new</link>
			<description><![CDATA[<div class="codebox"><pre><code>            RecordStore store = RecordStore.openRecordStore(&quot;mystore&quot;, true);
            if (store.getNumRecords() &gt; 0) {
                byte[] data = store.getRecord(1);
                if (data.length &gt; 2) {
                    DataInputStream sdis = new DataInputStream(new ByteArrayInputStream(data));
                    String sdevname = sdis.readUTF();
                    sdis.close();// store.closeRecordStore();
                    this.append(sdevname, null);
                }
            } else {
                //create two foo records
                byte[] foo = new byte[1];
                foo[0] = 0;
                store.addRecord(foo, 0, 1);
                store.addRecord(foo, 0, 1);
            }
            store.closeRecordStore();</code></pre></div><p>Why it checks if data.length &gt; 2 ? And if not why it needs to create &quot;two foo records&quot;? Are these records necessary for something?</p>]]></description>
			<author><![CDATA[null@example.com (sbp)]]></author>
			<pubDate>Sat, 26 Apr 2008 11:28:25 +0000</pubDate>
			<guid>http://www.miniware.net/forum/viewtopic.php?id=136&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[run command]]></title>
			<link>http://www.miniware.net/forum/viewtopic.php?id=119&amp;action=new</link>
			<description><![CDATA[<p>i want to ask... what is the exactly function of menu runrun command and what is the exactly commands that can run? can u give me some examples? is it can run any command that we wrote on mobile phone, or there&#039;s any limitation? thanx...</p>]]></description>
			<author><![CDATA[null@example.com (rieske)]]></author>
			<pubDate>Mon, 03 Mar 2008 09:24:35 +0000</pubDate>
			<guid>http://www.miniware.net/forum/viewtopic.php?id=119&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[Start the programs(media player, ie, winamp, etc.)]]></title>
			<link>http://www.miniware.net/forum/viewtopic.php?id=117&amp;action=new</link>
			<description><![CDATA[<p>Dear nikos,<br />Is it possible to start those program from client? So when we choose application,it all the same we start the program. For example,i choose Windows Media Player from the list then on server the program started. Maybe the code similar with run command,but i still dont get how to get the .exe file from specific directory (c:\program files\...).<br />Please could u give me some example code for those programs? Thank you and i appreciate for your help.</p>]]></description>
			<author><![CDATA[null@example.com (rieske)]]></author>
			<pubDate>Mon, 25 Feb 2008 08:12:11 +0000</pubDate>
			<guid>http://www.miniware.net/forum/viewtopic.php?id=117&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[disconnect and reconnect]]></title>
			<link>http://www.miniware.net/forum/viewtopic.php?id=112&amp;action=new</link>
			<description><![CDATA[<p>dear nikos...<br />i need your help again. i want to add disconnect and reconnect command in class ModeList.java so when we want to disconnect/reconnect the bluetooth connection we just pressed it. do u think it is possible?<br />on your code there is public void disconnect(), do you think can i use that method to disconnect command? while i still get a little confused on what method i must use on reconnect button. is it maybe same code like public void connectToServer()..?<br />i hope u would answer those question... and i&#039;m looking forward to your response... thanks very much...</p>]]></description>
			<author><![CDATA[null@example.com (rieske)]]></author>
			<pubDate>Wed, 30 Jan 2008 08:03:06 +0000</pubDate>
			<guid>http://www.miniware.net/forum/viewtopic.php?id=112&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[Help for this prob]]></title>
			<link>http://www.miniware.net/forum/viewtopic.php?id=111&amp;action=new</link>
			<description><![CDATA[<p>i used JSE 1.6 and WTK25 and i have source code Bluetooth Remote Control.</p><p>i can not build server source code with WTK25, the problem is<br />ERROR: finalize methods should not appear<br />Error preverifying class com.intel.bluetooth.BluetoothL2CAPClientConnection<br />Build failed</p><p>any one help me for figure it out. thx <br />sorry my english - because i&#039;m Indonesian</p>]]></description>
			<author><![CDATA[null@example.com (themob)]]></author>
			<pubDate>Fri, 25 Jan 2008 06:49:25 +0000</pubDate>
			<guid>http://www.miniware.net/forum/viewtopic.php?id=111&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[fail when loaded onto phone]]></title>
			<link>http://www.miniware.net/forum/viewtopic.php?id=110&amp;action=new</link>
			<description><![CDATA[<p>first of all thanx&nbsp; for your examples, i am a student trying to write some java program&nbsp; utilising bluetooth. However i met with a very basic problem that -&nbsp; programs that can run in the emulator without problem appears as an illegal&nbsp; program with a shade of grey when loaded onto the phone Nokia 6230i. I&nbsp; tried to load in your programs that should have no problem but the&nbsp; problem persist. Can you give some comments on it please? please contact me&nbsp; at my email. thank you.</p>]]></description>
			<author><![CDATA[null@example.com (page_contact)]]></author>
			<pubDate>Wed, 16 Jan 2008 09:56:36 +0000</pubDate>
			<guid>http://www.miniware.net/forum/viewtopic.php?id=110&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[connect to a bluetooth device]]></title>
			<link>http://www.miniware.net/forum/viewtopic.php?id=108&amp;action=new</link>
			<description><![CDATA[<p>Hi I&#039;m Shereen, and am currently a student in Singapore. Ihave been<br />ggiven a very hard final yr project.<br />It is a bluetooth remote controller very much like salling clicker and<br />what you have done. My project mates and i are stuck at the connecting<br />to a bluetooth device part. We are using NetBeans IDE. We are able to<br />search for bluetooth devices and are able to list them out, but we<br />don&#039;t really know how to connect to a specific device</p><p>Can you help? We are in a rush for time too</p>]]></description>
			<author><![CDATA[null@example.com (page_contact)]]></author>
			<pubDate>Thu, 10 Jan 2008 06:19:16 +0000</pubDate>
			<guid>http://www.miniware.net/forum/viewtopic.php?id=108&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[new version 1.4 - add applications from the server and send messages]]></title>
			<link>http://www.miniware.net/forum/viewtopic.php?id=106&amp;action=new</link>
			<description><![CDATA[<p>Version 1.4 has been released</p><p>The biggest change is that now application and their commands are stored on the server in the applist.xml For the time beeing appliccations can be added only by editing that xml. If you want to add a new key combination to an existing application add similar to the following code inside an app tag</p><p>&lt;cmd keys=&quot;2&quot; name=&quot;4. Paste&quot;&gt;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;key value=&quot;17&quot;/&gt;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;key value=&quot;86&quot;/&gt;<br />&lt;/cmd&gt;</p><p>keys is the number of keys, name is the name of the command and keys values are the corresponding values of the java.awt.event.KeyEvent constants.</p><p>If you want to add a new application increase&nbsp; the total in the applist top tag and add a new app tag</p><p>A new mode has been added, the utilities mode where you can run a command, (just like typing start-&gt; run) and you can send a message to the server</p><p>Have fun</p>]]></description>
			<author><![CDATA[null@example.com (nikos)]]></author>
			<pubDate>Thu, 03 Jan 2008 23:40:43 +0000</pubDate>
			<guid>http://www.miniware.net/forum/viewtopic.php?id=106&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[add send message]]></title>
			<link>http://www.miniware.net/forum/viewtopic.php?id=102&amp;action=new</link>
			<description><![CDATA[<p>hi...<br />this time i need your help. i want to add a function send message in this application. is it possible?<br />could you please help me with the code or maybe any website which is related...<br />thanx.. n i&#039;m looking forward to your response...</p>]]></description>
			<author><![CDATA[null@example.com (rieske)]]></author>
			<pubDate>Tue, 11 Dec 2007 13:29:12 +0000</pubDate>
			<guid>http://www.miniware.net/forum/viewtopic.php?id=102&amp;action=new</guid>
		</item>
	</channel>
</rss>

