-
Hello,
I made a program in QUICKBASIC several years ago. It was
a "time machine", in that when the user entered his date of birth, his age would be displayed, and also the current year. When any key was touched, the date would decrease by a year, as well as the age of the person. Key facts associated with that year would also appear.
Right now I'm experimenting with decreasing the date.
I can use a simple "for/next" loop and place the result in a label. But the "count down" isn't displayed, only the result. I can use the "print" command, and the decreasing numbers are displayed, but they go down a long column and then end.
Anyhelp from someone out there would be greatly appreciated....
Thanks,
Richard
-
Just like QBasic, you can use the Cls command to clear the screen.
Code:
MyNum = MyNum + 1
Cls
Print MyNum
-
I don't get exactly what you mean send me you code and I will try to figure out your problem