pothuri Posted February 8, 2004 Posted February 8, 2004 hi all I am programming in vb.net. In this I am creating and writing data into a text file. The data actually is an array of double numbers. I am using writer object to write this to the file. I am unable to include tabs between the numbers while writing to a file. SW.Write(arraydr1(1).ToString) SW.Write("\t")------this is not working out. i would appreciate if anyone can help me figure out how to include tab while writing to a text file. thanx Quote
Moderators Robby Posted February 8, 2004 Moderators Posted February 8, 2004 use ControlChars.Tab (tab) or ControlChars.NewLine (for a new line) Quote Visit...Bassic Software
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.