An odd question about an old issue from an old man

Compiled ( Clipper 5.3b ) and linked ( both exespace and blinker ) an old Clipper program ( under Win 7 );
.exe builded but do nothing, begin and immediatly end

Any idea ?
Viva HMG

Moderator: Rathinagiri
Thanks to interest RathiRathinagiri wrote:Had you made the program to be compatible by changing the properties?
Code: Select all
@...GET CHECK : Create a new check box Get object and display it
@...GET LIST : Create a new list box Get object and display it
@...GET PUSH : Create a new push button Get object and display it
@...GET RADIO : Create a new radio button group Get object and display it
@...GET TBROWSE : Create a new TBrowse Get object and display it
Thanks Jairo, I will try.Jairo Maia wrote: My question appear obvious, but: Did you change the files:
Config.nt:
Files=NNN
Buffers=NN
Autoexec.nt:
Set Clipper=/F:NNN
Solved ...esgici wrote:...
An odd question about an old issue from an old man...
Code: Select all
STORE SPACE (25) TO Name
STORE .T. TO Married
STORE SPACE (19) TO Phone
CLS
@ 5,10 SAY "Customer Name: " GET Name
@ 7,10 SAY "Married?: " GET Married CHECKBOX
@ 9,10 SAY "Home Phone: " GET Phone
READ
? ALLTRIM (Name) + " IS " + IIF(Married,"","NOT") + " Married."
?
WAIT "END OF CHECKBOX.PRG"