Click here to Skip to main content
15,887,683 members
Home / Discussions / Mobile
   

Mobile

 
Generalipad bluetooth [modified] Pin
Kanel Roath23-Aug-11 15:09
Kanel Roath23-Aug-11 15:09 
GeneralRe: ipad bluetooth Pin
_Maxxx_23-Aug-11 15:27
professional_Maxxx_23-Aug-11 15:27 
QuestionSIP for IPhone Pin
nitin_ion22-Aug-11 19:01
nitin_ion22-Aug-11 19:01 
Questionwhich operating system Pin
arkiboys18-Aug-11 11:12
arkiboys18-Aug-11 11:12 
AnswerRe: which operating system Pin
Richard MacCutchan18-Aug-11 22:11
mveRichard MacCutchan18-Aug-11 22:11 
QuestionJ2ME Bluetooth Program Pin
Member 816493516-Aug-11 5:06
Member 816493516-Aug-11 5:06 
GeneralRe: J2ME Bluetooth Program Pin
Peter_in_278016-Aug-11 14:08
professionalPeter_in_278016-Aug-11 14:08 
Questionhaving problem to translate from WinForm to Windows-CE C# program - FTP transfer Pin
Gali197811-Aug-11 21:27
Gali197811-Aug-11 21:27 
having problem to translate from WinForm to Windows-CE C# program - FTP transfer

i have this code for transfer from Local computer to FTP server

its work excellent on WinForm, i must have this on Windows-CE and it dosnt work

the code:

string MyFile = @"d:\PC.sdf";

string url = "ftp://127.0.0.1/PC.sdf";
FtpWebRequest request = (FtpWebRequest)FtpWebRequest.Create(url);

request.Method = WebRequestMethods.Ftp.UploadFile;
//request.Credentials = new NetworkCredential("user name", "password");
request.UsePassive = true;
request.UseBinary = true;
request.KeepAlive = false;

//byte[] buffer = File.ReadAllBytes(MyFile);

using (Stream reqStream = request.GetRequestStream())
{
int count = 0;
byte[] buffer = new byte[100];
using (FileStream file = new FileStream(MyFile, FileMode.Open))
{
while ((count = file.Read(buffer, 0, 100)) > 0)
{
reqStream.Write(buffer, 0, count);
}
}

}
thanks in advance
AnswerRe: having problem to translate from WinForm to Windows-CE C# program - FTP transfer Pin
Mehdi Gholam20-Aug-11 6:52
Mehdi Gholam20-Aug-11 6:52 
QuestionLack of Bluetooth Serial Port Profile in iPhone, WP7 Mango, Android(?) Pin
Loui889-Aug-11 21:23
Loui889-Aug-11 21:23 
AnswerRe: Lack of Bluetooth Serial Port Profile in iPhone, WP7 Mango, Android(?) Pin
Peter_in_27809-Aug-11 21:38
professionalPeter_in_27809-Aug-11 21:38 
GeneralRe: Lack of Bluetooth Serial Port Profile in iPhone, WP7 Mango, Android(?) Pin
Loui8810-Aug-11 0:13
Loui8810-Aug-11 0:13 
AnswerRe: Lack of Bluetooth Serial Port Profile in iPhone, WP7 Mango, Android(?) Pin
Peter_in_278010-Aug-11 2:12
professionalPeter_in_278010-Aug-11 2:12 
GeneralRe: Lack of Bluetooth Serial Port Profile in iPhone, WP7 Mango, Android(?) Pin
Loui8810-Aug-11 5:50
Loui8810-Aug-11 5:50 
AnswerRe: Lack of Bluetooth Serial Port Profile in iPhone, WP7 Mango, Android(?) Pin
Peter_in_278010-Aug-11 14:11
professionalPeter_in_278010-Aug-11 14:11 
GeneralRe: Lack of Bluetooth Serial Port Profile in iPhone, WP7 Mango, Android(?) Pin
Loui8815-Aug-11 23:31
Loui8815-Aug-11 23:31 
GeneralRe: Lack of Bluetooth Serial Port Profile in iPhone, WP7 Mango, Android(?) Pin
Peter_in_278016-Aug-11 13:48
professionalPeter_in_278016-Aug-11 13:48 
Questionwhat are the different software components needed to create a small application for Android mobile phone? Pin
Dilip kumar konar9-Aug-11 20:28
Dilip kumar konar9-Aug-11 20:28 
AnswerRe: what are the different software components needed to create a small application for Android mobile phone? Pin
Richard MacCutchan9-Aug-11 23:28
mveRichard MacCutchan9-Aug-11 23:28 
Questionlooking for solution, if i dont press any key or touch the screen for 2 minutes on windows-mobile - i need to return to LogIn screen [modified] Pin
Gali19785-Aug-11 22:32
Gali19785-Aug-11 22:32 
AnswerRe: looking for solution, if i dont press any key or touch the screen for 2 minutes on windows-mobile - i need to return to LogIn screen Pin
Mycroft Holmes6-Aug-11 22:47
professionalMycroft Holmes6-Aug-11 22:47 
Questionasp.net Mobile web Pin
netJP12L2-Aug-11 5:12
netJP12L2-Aug-11 5:12 
AnswerRe: asp.net Mobile web Pin
JimmyRopes6-Aug-11 18:57
professionalJimmyRopes6-Aug-11 18:57 
Questionhow to send mms by gsm mobile? Pin
Le@rner2-Aug-11 0:43
Le@rner2-Aug-11 0:43 
AnswerRe: how to send mms by gsm mobile? Pin
sariasam9-Aug-11 21:31
sariasam9-Aug-11 21:31 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.