|
|||
|
i am using this code to show a Baloon Tip
Code:
Application.SysTray.useDefaultHandler = false; Application.SysTray.balloonTip = "Please Wait While the Process completes"; Application.SysTray.balloonTitle = "In process.."; Application.SysTray.balloonIcon = "info"; Application.SysTray.balloonTimeout = 1000; Application.SysTray.showBalloonTip(); Either the program terminates or it hangs. |
|
|||
|
Maybe you will have to put the code into an event handler?
Code:
Application.SysTray.useDefaultHandler = false;
Application.SysTray.onMouseMove = function ()
{
this.balloonTip = "Please Wait While the Process completes";
this.balloonTitle = "In process...";
this.balloonIcon = "info";
this.showBalloonTip();
}
|
![]() |
Was this information helpful? Yes No
| Thread Tools | |
| Display Modes | |
|
|