Is it possible to put info into status bar insead url? I mean to get data from db or from site. i want to put info about who is logged into my program
First disable ActAsIEStatusBar
You need to work with HEScript to access the UI items like the status bar. Use ChangeStatusBar: sets the text of the status bar.
procedure ChangeStatusBar(const Text: String; Reset: Boolean); * Text: new text to show in the status bar.
* Reset: if true, the text will be set as the default text.
For instance:
ChangeStatusBar("Extracting Loan data... Please Wait.",false);