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

Mobile

 
GeneralRe: Main Window as WebBrowser for WM 5.0 [modified] Pin
Geoff_Praha22-Oct-06 21:37
Geoff_Praha22-Oct-06 21:37 
GeneralRe: Main Window as WebBrowser for WM 5.0 Pin
jalsa G27-Oct-06 2:47
jalsa G27-Oct-06 2:47 
GeneralRe: Main Window as WebBrowser for WM 5.0 Pin
Geoff_Praha27-Oct-06 2:49
Geoff_Praha27-Oct-06 2:49 
GeneralRe: Main Window as WebBrowser for WM 5.0 Pin
jalsa G29-Oct-06 18:49
jalsa G29-Oct-06 18:49 
GeneralRe: Main Window as WebBrowser for WM 5.0 Pin
Geoff_Praha29-Oct-06 21:24
Geoff_Praha29-Oct-06 21:24 
GeneralRe: Main Window as WebBrowser for WM 5.0 Pin
jalsa G1-Nov-06 0:18
jalsa G1-Nov-06 0:18 
Questionwriting text fies in mobiles application in vb.net Pin
Vikash Yadav16-Oct-06 21:22
Vikash Yadav16-Oct-06 21:22 
AnswerRe: writing text fies in mobiles application in vb.net Pin
acroitoriu17-Oct-06 12:17
acroitoriu17-Oct-06 12:17 
A simple example would be the following one which is using the StreamWriter:

----------------

Dim sw As System.IO.StreamWriter

' Open the file.
sw = New System.IO.StreamWriter("text.txt")

' Add some text to the file.
sw.Write("This is something ")
sw.WriteLine("This is something else")

' Close the file.
sw.Close()

-----------------

To read the content use a StreamReader:

-----------

Dim sr As System.IO.StreamReader

sr = System.IO.File.OpenText("text.txt")
MsgBox(sr.ReadToEnd)
sr.Close()

--------------

This should do ... good luck!

AndreiC


------------
Croitoriu Andrei
andrei.croitoriu@gmail.com
http://www.stud.usv.ro/~acroitoriu
http://spaces.msn.com/acroitoriu/
"No complexity beyond what is necessary"

QuestionStarting with WM and Visual C# 2005 Pin
arvaker8416-Oct-06 7:16
arvaker8416-Oct-06 7:16 
AnswerRe: Starting with WM and Visual C# 2005 Pin
acroitoriu17-Oct-06 12:09
acroitoriu17-Oct-06 12:09 
GeneralRe: Starting with WM and Visual C# 2005 Pin
arvaker8417-Oct-06 22:11
arvaker8417-Oct-06 22:11 
QuestionHow to get the base station (cell) id of a mobile phone in a GSM network Pin
AlexAngAB16-Oct-06 2:06
AlexAngAB16-Oct-06 2:06 
QuestionNeed for grid control Pin
Begunov14-Oct-06 15:36
Begunov14-Oct-06 15:36 
QuestionSerial communication Pin
cosmomen13-Oct-06 4:35
cosmomen13-Oct-06 4:35 
QuestionWindows CE.Net – Reminder Message Pin
Ram Murugan12-Oct-06 23:04
Ram Murugan12-Oct-06 23:04 
AnswerRe: Windows CE.Net – Reminder Message Pin
Mike Dimmick12-Oct-06 23:41
Mike Dimmick12-Oct-06 23:41 
GeneralRe: Windows CE.Net – Reminder Message Pin
Ram Murugan15-Oct-06 17:23
Ram Murugan15-Oct-06 17:23 
Questionnotification control Pin
nith12312-Oct-06 20:08
nith12312-Oct-06 20:08 
Questionwindows media player on Emulator ? Pin
jalsa G12-Oct-06 19:30
jalsa G12-Oct-06 19:30 
QuestionHow can indie devs get revenue for mobile app or game? Pin
AllenArthurGay11-Oct-06 7:52
AllenArthurGay11-Oct-06 7:52 
QuestionHow to creat a floating toobar with evc++4.0? Pin
qianfm11-Oct-06 1:55
qianfm11-Oct-06 1:55 
QuestionProblemo with keys Pin
Fernando A. Gomez F.10-Oct-06 11:57
Fernando A. Gomez F.10-Oct-06 11:57 
QuestionPictureBox control causes exception Pin
matt_wupp10-Oct-06 2:11
matt_wupp10-Oct-06 2:11 
QuestionBluetooth in Windows CE .NET 4.2 Pin
skyapie10-Oct-06 0:05
skyapie10-Oct-06 0:05 
QuestionWant some Information Pin
varun_khanna179-Oct-06 19:37
varun_khanna179-Oct-06 19:37 

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.