Click here to Skip to main content
15,915,508 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: How to select a range of charater in word Pin
cylix20008-Feb-06 22:40
cylix20008-Feb-06 22:40 
Questiondesign receiver to receive xml files Pin
jacktundra8-Feb-06 21:15
jacktundra8-Feb-06 21:15 
QuestionMulti Tier database in vb.net ( 2005) Pin
crash8938-Feb-06 21:05
crash8938-Feb-06 21:05 
AnswerRe: Multi Tier database in vb.net ( 2005) Pin
JUNEYT9-Feb-06 11:09
JUNEYT9-Feb-06 11:09 
QuestionTrying to saving URLs, big problems! :-( Pin
Darshon8-Feb-06 16:04
Darshon8-Feb-06 16:04 
AnswerRe: Trying to saving URLs, big problems! :-( Pin
Dave Kreskowiak9-Feb-06 4:17
mveDave Kreskowiak9-Feb-06 4:17 
GeneralRe: Trying to saving URLs, big problems! :-( Pin
Darshon9-Feb-06 16:45
Darshon9-Feb-06 16:45 
GeneralRe: Trying to saving URLs, big problems! :-( Pin
Dave Kreskowiak9-Feb-06 18:04
mveDave Kreskowiak9-Feb-06 18:04 
Well, in the code that you posted, you didn't open any file and write anything to it. The RichTextBox won't do anything for you and you're using it's methods incorrectly.

You're looking for something most like this:
If SaveFileDialog.ShowDialog = DialogResult.OK Then
    Dim fs As Stream = SaveFileDialog.OpenFile()
    If Not (fs Is Nothing) Then
        fs.WriteLine("[InternetShortcut]")
        fs.WriteLine(String.Format("URL={0}", URLAddress))
        fs.Close()
    End If
End If



RageInTheMachine9532
"...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome

GeneralRe: Trying to saving URLs, big problems! :-( Pin
Darshon9-Feb-06 19:58
Darshon9-Feb-06 19:58 
GeneralRe: Trying to saving URLs, big problems! :-( Pin
Dave Kreskowiak10-Feb-06 1:24
mveDave Kreskowiak10-Feb-06 1:24 
GeneralRe: Trying to saving URLs, big problems! :-( Pin
Darshon10-Feb-06 4:53
Darshon10-Feb-06 4:53 
GeneralRe: Trying to saving URLs, big problems! :-( Pin
Dave Kreskowiak10-Feb-06 13:42
mveDave Kreskowiak10-Feb-06 13:42 
GeneralRe: Trying to saving URLs, big problems! :-( Pin
Darshon10-Feb-06 17:38
Darshon10-Feb-06 17:38 
Questionim try 2 convert .mdb to .cdb (pocket pc) using actice sync, but y the Remote Procedure Call Fail message come out..i cann convert anymore...help!! Pin
williamccyccyccy8-Feb-06 15:13
williamccyccyccy8-Feb-06 15:13 
GeneralRe: im try 2 convert .mdb to .cdb (pocket pc) using actice sync, but y the Remote Procedure Call Fail message come out..i cann convert anymore...help!! Pin
Guffa8-Feb-06 21:49
Guffa8-Feb-06 21:49 
Questionselect tab in tabstrip from commandbutton Pin
Jlawrnce8-Feb-06 14:15
Jlawrnce8-Feb-06 14:15 
AnswerRe: select tab in tabstrip from commandbutton Pin
Chatura Dilan8-Feb-06 23:14
Chatura Dilan8-Feb-06 23:14 
AnswerRe: select tab in tabstrip from commandbutton Pin
JUNEYT9-Feb-06 6:03
JUNEYT9-Feb-06 6:03 
QuestionProgram for E-mails Pin
kostasdiktia28-Feb-06 13:25
kostasdiktia28-Feb-06 13:25 
QuestionUsing Flash Events in Vb.Net Pin
James A.8-Feb-06 13:11
James A.8-Feb-06 13:11 
AnswerRe: Using Flash Events in Vb.Net Pin
Chatura Dilan8-Feb-06 17:24
Chatura Dilan8-Feb-06 17:24 
GeneralRe: Using Flash Events in Vb.Net Pin
Guerven8-Feb-06 18:38
Guerven8-Feb-06 18:38 
GeneralRe: Using Flash Events in Vb.Net Pin
Chatura Dilan8-Feb-06 23:38
Chatura Dilan8-Feb-06 23:38 
Questiondatagrid and adodc components Pin
Marc Soleda8-Feb-06 12:25
Marc Soleda8-Feb-06 12:25 
QuestionMove Image within PicBox Pin
Serpiente8-Feb-06 12:06
Serpiente8-Feb-06 12:06 

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.