How to make a table in VB. Net?

anqspeedy

New member
Joined
Apr 10, 2007
Messages
1
Programming Experience
Beginner
Hi,
i want to make a some programme that can display the result in notepad.
i want to make a table and save the content in notepad...
anyone could help me?

Thanks before :)
 
I would first use the System.IO.StreamWriter class to make the text file with you're table(s) then use System.Diagnostics.Process.Start("Notepad.exe", "Your Text File") to open the file in Notepad
 
Back
Top