kuppam89
THISFORM.Refresh()
If you have specific controls that you want to refresh, use
THISFORM.Text1.Refresh()
This is more efficient than refreshing all the form's objects.
You need to check the control's properties to ensure that it can be refreshed, FI, to refresh a label, use
THISFORM.Label1.Caption = [My new value]
not
THISFORM.Label1.Refresh()
HTH
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.