well im making a game and i want to be able to save profiles and open them back...and i want to use a custom file extestion
thx
Printable View
well im making a game and i want to be able to save profiles and open them back...and i want to use a custom file extestion
thx
....What is it that you need to do? Create the custom file type? Or find an efficient design for the profile?
well yes i do need to create a custom file type and i need to save custom info to that file type
do you under stand? or is there no way to do that?
well, to save it do something like this
VB Code:
open "whatever.ext" for output as #1 print #1, 'print whatever text you want to be on the first line print #1, 'more information here close #1
you can use any file extension you would like... however you have to do some registry editing through VB to get the information your own icon, and open automatically with your program.
ooo ok ic