Click here to Skip to main content
15,885,365 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: hiding windows taskbar Pin
Dave Kreskowiak5-May-09 3:18
mveDave Kreskowiak5-May-09 3:18 
GeneralRe: hiding windows taskbar Pin
Skymir5-May-09 10:27
Skymir5-May-09 10:27 
QuestionEditing Individual Listview Subitems Pin
Rosstarr3-May-09 22:26
Rosstarr3-May-09 22:26 
AnswerRe: Editing Individual Listview Subitems Pin
Henry Minute4-May-09 2:41
Henry Minute4-May-09 2:41 
QuestionAppend ALL Textfiles within a folder to a Single Textfile Pin
vijay24823-May-09 22:14
vijay24823-May-09 22:14 
AnswerRe: Append ALL Textfiles within a folder to a Single Textfile Pin
Christian Graus3-May-09 22:17
protectorChristian Graus3-May-09 22:17 
GeneralMessage Closed Pin
4-May-09 2:32
vijay24824-May-09 2:32 
GeneralRe: Append ALL Textfiles within a folder to a Single Textfile Pin
riced4-May-09 3:10
riced4-May-09 3:10 
Three things.
1 The Button1_Click should be
Private Sub Button1_Click_1(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
   AppendFiles()
End Sub

You need to tell it that Button1_Click_1 handles the Click event.

2 This is a hodge-podge of VB.Net and VBScript. You don't need all that FSO stuff. Have a look at reading and writing textfiles on MSDN or help system.
3 Be careful with the folder path. It needs to end with '\' before you join the filename, but that's not what is in the textbox.

Having said that the basic idea seems sound, it just won't work. It's relying on e.g. MainFile being a variant which does not exist in VB.NET. (Look at the two assignments: ones a string the other a file object.)
It won't even compile if you have Option Explicit and Option Strict set (as they ought to be).

Regards
David R
---------------------------------------------------------------
"Every program eventually becomes rococo, and then rubble." - Alan Perlis

GeneralMessage Closed Pin
4-May-09 3:59
vijay24824-May-09 3:59 
GeneralRe: Append ALL Textfiles within a folder to a Single Textfile Pin
riced4-May-09 5:38
riced4-May-09 5:38 
GeneralRe: Append ALL Textfiles within a folder to a Single Textfile Pin
vijay24824-May-09 20:51
vijay24824-May-09 20:51 
GeneralRe: Append ALL Textfiles within a folder to a Single Textfile Pin
riced4-May-09 22:04
riced4-May-09 22:04 
GeneralRe: Append ALL Textfiles within a folder to a Single Textfile Pin
vijay24824-May-09 22:26
vijay24824-May-09 22:26 
GeneralRe: Append ALL Textfiles within a folder to a Single Textfile Pin
riced4-May-09 22:44
riced4-May-09 22:44 
GeneralRe: Append ALL Textfiles within a folder to a Single Textfile Pin
vijay24824-May-09 22:56
vijay24824-May-09 22:56 
GeneralMessage Closed Pin
4-May-09 23:14
vijay24824-May-09 23:14 
GeneralRe: Append ALL Textfiles within a folder to a Single Textfile Pin
riced5-May-09 0:30
riced5-May-09 0:30 
GeneralMessage Closed Pin
5-May-09 1:45
vijay24825-May-09 1:45 
GeneralRe: Append ALL Textfiles within a folder to a Single Textfile Pin
riced5-May-09 2:30
riced5-May-09 2:30 
GeneralRe: Append ALL Textfiles within a folder to a Single Textfile Pin
riced5-May-09 1:18
riced5-May-09 1:18 
GeneralRe: Append ALL Textfiles within a folder to a Single Textfile Pin
vijay24825-May-09 1:59
vijay24825-May-09 1:59 
GeneralRe: Append ALL Textfiles within a folder to a Single Textfile Pin
riced5-May-09 2:12
riced5-May-09 2:12 
GeneralMessage Closed Pin
5-May-09 4:04
vijay24825-May-09 4:04 
GeneralRe: Append ALL Textfiles within a folder to a Single Textfile Pin
riced5-May-09 6:47
riced5-May-09 6:47 
GeneralRe: Append ALL Textfiles within a folder to a Single Textfile Pin
vijay24825-May-09 10:24
vijay24825-May-09 10: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.