I found this on the Cypress Enable Language document.
Sub Main ()
Title$ = "Box to ask for a number"
Prompt$ = "Enter the number"
Default$ = ""
X% = 200
Y% = 200
N$ = InputBox$(Prompt$, Title$, Default$, X%, Y%)
End Sub
When this Input Box is run where is the answer?
How do I retrieve it? Where is it stored? In a parameter? I am looking for an integer.
I hope that makes sense. I don't even know enough to ask the right question.

Greg