I developed a lotto program. If the display times out with the program result ( my lotto pick ), is there a way to recover the result? I tried copy, but that doesn't take.
program result display
|
|
« Next Oldest | Next Newest »
|
▼ ▼
Post: #5
10-02-2013, 04:22 PM
You can always create a global variable and store it there. For example,
EXPORT WIN; Now you can get the winning number by typing WIN even after the program finishes. Having no idea how you store your lotto number, a list might be most appropriate. |