|
|||||||
![]() |
|
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#16
|
||||
|
||||
|
Quote:
__________________
I don't answer coding questions via PM or Email. Please post a thread in the appropriate forum section. ![]() Please use [Code]your code goes in here[/Code] tags when posting code. Before posting your question, did you look here? Got a question on Linux? Visit our Linux sister site. Modifications Required For VB6 Apps To Work On Vista ![]() Microsoft MVP 2005/2006/2007/2008/2009 |
|
#17
|
||||
|
||||
|
Here is something you might be interested in reading.
__________________
I don't answer coding questions via PM or Email. Please post a thread in the appropriate forum section. ![]() Please use [Code]your code goes in here[/Code] tags when posting code. Before posting your question, did you look here? Got a question on Linux? Visit our Linux sister site. Modifications Required For VB6 Apps To Work On Vista ![]() Microsoft MVP 2005/2006/2007/2008/2009 |
|
#18
|
|||
|
|||
|
[quote=sayfrndship]
Quote:
you can use obex to send a file with j2me search "Obex j2me file transfer" to find very more code about it |
|
#19
|
|||
|
|||
|
[quote=forumname;475378]Hi!!
my quote is to furumname i ve to develop a application..in my project to transfer data from mobile to pc and back forth. I ve no idea how to start...can u provide me with d code so tht i can strt with it. Thank you!! |
|
#20
|
||||
|
||||
|
Welcome to DevX
![]() Who is this forumname that you refer to? What language will you be using for this app?
__________________
I don't answer coding questions via PM or Email. Please post a thread in the appropriate forum section. ![]() Please use [Code]your code goes in here[/Code] tags when posting code. Before posting your question, did you look here? Got a question on Linux? Visit our Linux sister site. Modifications Required For VB6 Apps To Work On Vista ![]() Microsoft MVP 2005/2006/2007/2008/2009 |
|
#21
|
|||
|
|||
|
please help meeeeeeeee
please my final project is to create an application in J2ME which allows to transfer text file between PC and mobile via bluetooth..please help me if there any one can help me |
|
#22
|
|||
|
|||
|
transfering messages via bluetooth using j2me
Hello,
I am a newbie for java. My project is to transfer messages between a laptop and mobiles (back and forth) via bluetooth rather than using SMS service. Now I am using Jcreator and Java Wireless Toolkit2.5.2 and trying on a simple Hello World application. It has been successfully worked by the following code: [code] import javax.microedition.midlet.*; import javax.microedition.lcdui.*; public class First extends MIDlet { private boolean paused; private Display myDisplay; private HelloCanvas myCanvas; public First() { paused = false; } public void startApp() throws MIDletStateChangeException { if (paused) { myCanvas.repaint(); } else { myDisplay = Display.getDisplay(this); myCanvas = new HelloCanvas(); myDisplay.setCurrent(myCanvas); } } public void pauseApp(){ paused = true; notifyPaused(); } public void destroyApp(boolean unconditional){ notifyDestroyed(); } class HelloCanvas extends Canvas { public void paint(Graphics g){ int ctr; int y_loc = 0; g.setColor(0x0FFFFFF); g.fillRect(0,0,getWidth(), getHeight()); g.setColor(0); if (paused){ paused = false; g.drawString("Welcome Back",0,0,Graphics.TOP | Graphics.LEFT); } else { for (ctr = 1; ctr<=6; ctr++){ g.drawString("Hello World",0,y_loc,Graphics.TOP | Graphics.LEFT); y_loc+=25; } } } } } [\Code] Could you please give me some example code so that I can do the project further? Any help would be highly appreciated. Regards |
|
#23
|
|||
|
|||
|
Hi. I want to transfer data from mobile (phone,sim,memory card)memory to pc.what is the procedure and code of that.plz any body can help me
|
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|