D
Dan DeConinck
Hello,
I want to save the position of all the controls on my form. I would like to
write them out to a preference file.
I have done this in DOS BASIC like this:
TO WRITE the preference
open "c:\preferences.txt" for input as #1
input #1 ,a,b,c
close #1
TO READ the preferences
open "c:\preferences.txt" for output as #1
write #1,a,b,c
c lose #1
What are the VB.NET commands to do this ?
Thanks
Dan
I want to save the position of all the controls on my form. I would like to
write them out to a preference file.
I have done this in DOS BASIC like this:
TO WRITE the preference
open "c:\preferences.txt" for input as #1
input #1 ,a,b,c
close #1
TO READ the preferences
open "c:\preferences.txt" for output as #1
write #1,a,b,c
c lose #1
What are the VB.NET commands to do this ?
Thanks
Dan