How to get info from site or db to status bar (like show url)

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
0a574ba4de143a70.jpg
 
Last edited by a moderator:
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.
Code:
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);
 
Back
Top