views:

120

answers:

2

i would like to do FILE I/O without a dialogue. the file always be the same and the location will always be the same, therefore i dont need a dialogue. i would like to know how can i do this? what is the code to open, write, and save to a file without the dialogue.

+4  A: 

The dialogue does not open a file. It selects a file for open or save. It's still up to the app to open or create the file that was selected.

Basic File I/O in .NET

Cheeso
+2  A: 

The easist way to do this in vb.net is system.io.file.create. For more information check out the members of the system.io.file class

runxc1 Bret Ferrier