Hi,
I have a csv file stored up in my computer and my program writes to that csv file:
File1 = IO.File.AppendT ext("D:\Profile s\(compname)\De sktop\Web_Submi ssion_Project\u pdated_document .csv")
'Write a line to the bottom
File1.WriteLine (Trim(ProjectTe xtBox.Text) & "," & NotesTextBox.Te xt & "," & ProjectDetail2T extBox.Text & "," & ProjectDetail3T extBox.Text)
But now I want to create my own csv file. i.e my code should generate tht csv file and then write to it.
Can someone plz help me in this regrd
I have a csv file stored up in my computer and my program writes to that csv file:
File1 = IO.File.AppendT ext("D:\Profile s\(compname)\De sktop\Web_Submi ssion_Project\u pdated_document .csv")
'Write a line to the bottom
File1.WriteLine (Trim(ProjectTe xtBox.Text) & "," & NotesTextBox.Te xt & "," & ProjectDetail2T extBox.Text & "," & ProjectDetail3T extBox.Text)
But now I want to create my own csv file. i.e my code should generate tht csv file and then write to it.
Can someone plz help me in this regrd
Comment