I have a form with a cmd button
click event is :
do form k:\vfp\reinsurance\forms\as710dates
do k:\vfp\reinsurance\progs\as710a
which calls a separate date input form. when dates are entered and okay is pressed
(code behind okay button
Public lbookfrom,lBookto,lbookfromPFI,lBooktoPFI,nCURR
lbookfrom = thisform.txtBookfrom.value
lBookto = thisform.txtBookto.value
lbookfromPFI = thisform.txtBookfromPFI.value
lBooktoPFI = thisform.txtBooktoPFI.value
nCURR = thisform.cboRate.value
Thisform.release()
)
I want the date form to disappear and return to the calling form for execution of the program. The problem is that the program goes on and runs but the date form stays up on the screen.
click event is :
do form k:\vfp\reinsurance\forms\as710dates
do k:\vfp\reinsurance\progs\as710a
which calls a separate date input form. when dates are entered and okay is pressed
(code behind okay button
Public lbookfrom,lBookto,lbookfromPFI,lBooktoPFI,nCURR
lbookfrom = thisform.txtBookfrom.value
lBookto = thisform.txtBookto.value
lbookfromPFI = thisform.txtBookfromPFI.value
lBooktoPFI = thisform.txtBooktoPFI.value
nCURR = thisform.cboRate.value
Thisform.release()
)
I want the date form to disappear and return to the calling form for execution of the program. The problem is that the program goes on and runs but the date form stays up on the screen.