11-13-2008, 05:15 PM
Hi
Code which closes dialog box automatically, no need to click on Ok button
Mayur
Code which closes dialog box automatically, no need to click on Ok button
Code:
smsg = "Ur message"
Set oWScript = CreateObject("Wscript.Shell")
For i = 1 to 1
oWscript.popup smsg ,1
Next
Set oWScript = nothing
Mayur