Link to home
Start Free TrialLog in
Avatar of rowdy_laxman
rowdy_laxman

asked on

Using Lotus Script to display a message in Excel.

hi,

I have written some lotus script that exports a view to excel and everything works fine.  The last thing I need to complete the project is to inform the user that the export is complete.  Does anybody have any lotusscript that will display a message in excel?????

I am using Notes 6.5

Regards.

Avatar of madheeswar
madheeswar
Flag of Singapore image

xlApp.StatusBar ="Completed"
            
ASKER CERTIFIED SOLUTION
Avatar of Bill-Hanson
Bill-Hanson
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of qwaletee
qwaletee

Bill is refering to primarily to Application.Visible = False, which is very inefficient (screen update ofccur).  You can also further optimize by temporarily turning off other automatic updates such as automatic calculations (Applicaton.Calculation).
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial