Top DevX Stories
Creating Custom Export Filters for StarOffice with XSLT
WPF Wonders: Using DataTemplates
Crystal Reports Family Offers Options for Developers
Avaya Aura Session Manager video
Avaya Aura Overview video
Search the forums:

Go Back   DevX.com Forums > DevX Developer Forums > Mobile

Reply
 
Thread Tools Search this Thread Rate Thread Display Modes
  #16  
Old 01-24-2008, 12:36 PM
Hack's Avatar
Hack Hack is offline
Super Moderator
 
Join Date: Apr 2007
Location: Sterling Heights, Michigan
Posts: 7,719
Quote:
Originally Posted by mait
tell me how can i build a application which can send messages to a mobile phone from a pc via bluetooth or viceversa....
Build it using what?
__________________
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
Reply With Quote
  #17  
Old 01-24-2008, 03:28 PM
Hack's Avatar
Hack Hack is offline
Super Moderator
 
Join Date: Apr 2007
Location: Sterling Heights, Michigan
Posts: 7,719
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
Reply With Quote
  #18  
Old 04-24-2008, 02:24 AM
Ehsanjs Ehsanjs is offline
Registered User
 
Join Date: Apr 2008
Posts: 6
[quote=sayfrndship]
Quote:
Originally Posted by dogman
Hi!
My quote is toward dogman:
well Mr. can u tell me have u created this application
"I would like to create an application in J2ME which allows to transfer files between two mobile terminals via bluetooth...."
if so plz tell me as soon as possible as i m going to build my final project, and i need this thing as a part of my software application that i may add this option: send via bluetooth

Any one other can suggest me about add option(send via bluetooth) in my application..............
hi
you can use obex to send a file with j2me
search "Obex j2me file transfer" to find very more code about it
Reply With Quote
  #19  
Old 02-13-2009, 01:40 AM
aryansinghania aryansinghania is offline
Registered User
 
Join Date: Feb 2009
Location: Bangalore
Posts: 1
[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!!
Reply With Quote
  #20  
Old 02-13-2009, 09:00 AM
Hack's Avatar
Hack Hack is offline
Super Moderator
 
Join Date: Apr 2007
Location: Sterling Heights, Michigan
Posts: 7,719
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
Reply With Quote
  #21  
Old 03-25-2009, 07:13 PM
hiba_asf hiba_asf is offline
Registered User
 
Join Date: Mar 2009
Posts: 2
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
Reply With Quote
  #22  
Old 03-28-2009, 03:01 PM
j2me_starter j2me_starter is offline
Registered User
 
Join Date: Mar 2009
Posts: 1
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
Reply With Quote
  #23  
Old 09-12-2009, 05:50 AM
rahulpannase rahulpannase is offline
Registered User
 
Join Date: Sep 2009
Posts: 1
Post Transfer file from mobile to pc or vice versa

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
Reply With Quote
Reply

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT -4. The time now is 11:36 PM.


Sponsored Links



Acceptable Use Policy

internet.comMediabistrojusttechjobs.comGraphics.com

WebMediaBrands Corporate Info


Advertise | Newsletters | Feedback | Submit News

Legal Notices | Licensing | Permissions | Privacy Policy


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.