Hmmm... pretty simple really.
If you're only going to remember one movie at a time, just do this:
This will save the info.
open to write 1, "movie.dat"
write string 1, name$
write string 1, date$
write string 1, type$
write string 1, info$
close file 1
To load it:
open to read 1, "movie.dat"
read string 1, movie$
read string 1, date$
read string 1, type$
read string 1, info$
close file 1
print "---FORGETFUL MOMS MOVIE MATE---"
print "Movie: ";movie$
print "Date: "; date$
print "Type: "; type$
print "Other info: "; info$
That should just about do it, hope I helped!
[edit]
Just realized you may have been asking how to capture whether or not a key has been pressed.
REM -- This is the simple but no so good way.
confirm:
while y$ = ""
y$ = inkey$
wend
if y$ = "y" then goto save
if y$ = "n" then goto whereverelseyouwantthemtogo
goto confirm
P4 2.4Ghz HT, 512MB RAM, ATI Radeon 9600 128MB, 19" Viewsonic, 80GB HD