user1575786
user1575786

Reputation: 69

Can I read the Status Bar of IBM/HCL Notes using lotusscript?

In order to determine if a typical condition has occurred, that is "Document has been modified or corrupted since signed!" message, which is printed by Notes itself on the Status Bar. So I want to read the status bar coz I already know that which line of code is likely to throw this warning on some occasion. Based on that I'll setup my code to work one way or the other. Thanks.

Upvotes: 0

Views: 193

Answers (1)

Tode
Tode

Reputation: 12080

There is no way to get the contents of the statusbar in LotusScript or @Formula.

BUT: You can make sure, that whatever appears in the statusbar is written to log.nsf and / or console.log in IBM_TECHNICAL_SUPPORT ... from there you can check with LotusScript. Just set the notes.ini- Parameter

LogStatusBar=1

on the client executing your code, then every output in the statusbar will be written to above mentioned two places and can be read from there.

Upvotes: 3

Related Questions