I am puzzled because I am sure I have been able to write to a visible ( during app run) form whilst I am running a routine in a prg file started by clicking a [Next] button on the form.
I want to update a total records processed as I scan through a table and select records with the desired content in a particular field - appended to another table.
The form filename is frmglobaltl
The name value for the form is GlobalsTL
This name also appears in the Call Stack in the debugger.
whereas I can find a thisform object when I am on the main form I cannot find
frmglobaltl or GlobalTL as objects in the debugger as I come to these code lines in the prg file.
Trying everything here...
frmglobaltl.EXHNumPot.DisplayValue = Str(mynumber,5,0)
frmglobaltl.EXHNumPot.DisplayValue = Str(mynewrecords,5,0)
GlobalTL.EXHNumPot.DisplayValue = Str(mynumber,5,0)
GlobalTL.EXHNumPot.DisplayValue = Str(mynewrecords,5,0)
Can anyone suggest things I can try to accomplish this?
Thanks
Coldan
I want to update a total records processed as I scan through a table and select records with the desired content in a particular field - appended to another table.
The form filename is frmglobaltl
The name value for the form is GlobalsTL
This name also appears in the Call Stack in the debugger.
whereas I can find a thisform object when I am on the main form I cannot find
frmglobaltl or GlobalTL as objects in the debugger as I come to these code lines in the prg file.
Trying everything here...
frmglobaltl.EXHNumPot.DisplayValue = Str(mynumber,5,0)
frmglobaltl.EXHNumPot.DisplayValue = Str(mynewrecords,5,0)
GlobalTL.EXHNumPot.DisplayValue = Str(mynumber,5,0)
GlobalTL.EXHNumPot.DisplayValue = Str(mynewrecords,5,0)
Can anyone suggest things I can try to accomplish this?
Thanks
Coldan