Hi all -
Having trouble figuring out why my grid1.column3.text1.click() doesnt work a second time.
It seems to work the first time it is clicked, but then after the first time - it doesnt.
here is what I have in the click event of the text1 in the grid on a form called frmchecks:
To get to the form containing the grid in question, the user presses a button on a calling form, and that code is as follows:
When this form (frmchecks) is released, it sets the focus back to the previous calling form and the user can click the button again to call the above code again.
After I come back to this form(frmchecks) a second time, the click event no longer fires.
Any suggestions?
Thanks
CMcc
Having trouble figuring out why my grid1.column3.text1.click() doesnt work a second time.
It seems to work the first time it is clicked, but then after the first time - it doesnt.
here is what I have in the click event of the text1 in the grid on a form called frmchecks:
Code:
If Empty(This.Value)
If Messagebox("Enter Check Information Now?",4+32+256,"Please Confirm") == 6
Do Form frmexistcheck With Thisform.custnum,chktemp.chg_bk_dte
Endif
Else
Do Form frmshowcheck With Thisform.custnum,chktemp.chg_bk_dte
ENDIF
Thisform.Release()
To get to the form containing the grid in question, the user presses a button on a calling form, and that code is as follows:
Code:
DO FORM frmchecks WITH thisform.custnum
After I come back to this form(frmchecks) a second time, the click event no longer fires.
Any suggestions?
Thanks
CMcc