-
I have a program...
I have a little memo making program to make simple memos that saves a memo into the registry. I want to expand my program by making multiple memos available for save.
What I want to do is:
have a listbox listing the memos that have been saved
have a command button that loads the selected memo
have a command button that saves the memo in the text1.text section.
what i do not know how to do is save the text1.text as a file and list it into the list box. i want to have more than one so what could i do?
-
File functions to read up on:
dir$(<path>,63)
open <filenameinclpath> for input/output as #1
print #1,<stringoutput>
close #1
kill <path>
Post up once you have read these and tried some code.
Vince