Click here to Skip to main content
15,905,233 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionEmbedded prog in vb.net Pin
iambijit5-Sep-05 23:21
iambijit5-Sep-05 23:21 
AnswerRe: Embedded prog in vb.net Pin
Roy Heil6-Sep-05 9:01
professionalRoy Heil6-Sep-05 9:01 
QuestionHow to Scan page in VB6.0 by using TWAIN? Pin
Candor Soft5-Sep-05 22:16
Candor Soft5-Sep-05 22:16 
QuestionVB and HTML Pin
Hoopla!5-Sep-05 20:51
Hoopla!5-Sep-05 20:51 
Questionopening and appending to a file in vb.net Pin
kankan_155-Sep-05 20:28
kankan_155-Sep-05 20:28 
AnswerRe: opening and appending to a file in vb.net Pin
Briga5-Sep-05 21:31
Briga5-Sep-05 21:31 
AnswerRe: opening and appending to a file in vb.net Pin
Rizwan Bashir5-Sep-05 22:29
Rizwan Bashir5-Sep-05 22:29 
AnswerRe: opening and appending to a file in vb.net Pin
eagertolearn8-Sep-05 8:50
eagertolearn8-Sep-05 8:50 
You can also use the following code to append

Dim fw As New StreamWriter("File.txt", True)
fw.Writeline("something")
fw.Close()

This way, you don't have to worry if the file exists or not.

What this code does is initialize a new instance of the streamwriter class for the specified filename and if the file exists, it can be overwritten or appended. However, if the file does not exist, this will create a new file. Smile | :)




Smile | :)

-- modified at 12:46 Friday 9th September, 2005
QuestionHow to import VB 6.0 forms in VC++ 6.0 program? Pin
ladyscarlet995-Sep-05 15:55
ladyscarlet995-Sep-05 15:55 
AnswerRe: How to import VB forms in VC++ program? Pin
Christian Graus5-Sep-05 16:07
protectorChristian Graus5-Sep-05 16:07 
GeneralRe: How to import VB forms in VC++ program? Pin
ladyscarlet995-Sep-05 16:38
ladyscarlet995-Sep-05 16:38 
GeneralRe: How to import VB forms in VC++ program? Pin
Christian Graus5-Sep-05 16:56
protectorChristian Graus5-Sep-05 16:56 
QuestionSynchronise day and time Pin
Zakiro5-Sep-05 15:17
Zakiro5-Sep-05 15:17 
AnswerRe: Synchronise day and time Pin
Dave Kreskowiak5-Sep-05 17:42
mveDave Kreskowiak5-Sep-05 17:42 
GeneralRe: Synchronise day and time Pin
Christian Graus5-Sep-05 17:57
protectorChristian Graus5-Sep-05 17:57 
GeneralRe: Synchronise day and time Pin
Dave Kreskowiak6-Sep-05 6:45
mveDave Kreskowiak6-Sep-05 6:45 
QuestionSharing data between Windows forms Pin
roraima5-Sep-05 12:17
roraima5-Sep-05 12:17 
AnswerRe: Sharing data between Windows forms Pin
Christian Graus5-Sep-05 12:18
protectorChristian Graus5-Sep-05 12:18 
GeneralRe: Sharing data between Windows forms Pin
roraima5-Sep-05 12:23
roraima5-Sep-05 12:23 
GeneralRe: Sharing data between Windows forms Pin
Christian Graus5-Sep-05 12:35
protectorChristian Graus5-Sep-05 12:35 
GeneralRe: Sharing data between Windows forms Pin
roraima5-Sep-05 14:14
roraima5-Sep-05 14:14 
AnswerRe: Sharing data between Windows forms Pin
_mubashir6-Sep-05 2:38
_mubashir6-Sep-05 2:38 
AnswerRe: Sharing data between Windows forms Pin
korso_rogan6-Sep-05 9:08
korso_rogan6-Sep-05 9:08 
AnswerRe: Sharing data between Windows forms Pin
eagertolearn8-Sep-05 8:59
eagertolearn8-Sep-05 8:59 
AnswerRe: Sharing data between Windows forms Pin
roraima14-Sep-05 7:24
roraima14-Sep-05 7:24 

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.