How to display the status on the status area of the Form

  • Thread starter Thread starter John
  • Start date Start date
J

John

Hi,

Any one know how to display the status information on
status area of the form?

Thanks
John
 
John said:
Hi,

Any one know how to display the status information on
status area of the form?

The status area of the *form*? What's that? You can display text on
the status bar of the application window using

SysCmd acSysCmdSetStatus, "text to display"

and later clear it with

SysCmd acSysCmdClearStatus

but I don't know what you mean by "the status area of the form".
 
Back
Top