How to determine the change of _vfp.forms.count immediately, beside using timer to monitor it ?
I try line below :
public oVFP
oVFP = _vfp.forms
before i open any form, in the debugger i saw
oVFP.forms.cnt = 0
_vfp.forms.cnt = 0
When i open a new form :
oVFP.forms.cnt = 1
_vfp.forms.cnt = 1
I expect i create a assign method for oVFP, when the value of the oVFP.forms.cnt change it will run the code in the assign method, but it does not work. can anybody help ?
I try line below :
public oVFP
oVFP = _vfp.forms
before i open any form, in the debugger i saw
oVFP.forms.cnt = 0
_vfp.forms.cnt = 0
When i open a new form :
oVFP.forms.cnt = 1
_vfp.forms.cnt = 1
I expect i create a assign method for oVFP, when the value of the oVFP.forms.cnt change it will run the code in the assign method, but it does not work. can anybody help ?