Hi Ajay,
As per my knowledge its not possible, but you can create the MsgBox with time limit. use below code
Regards,
Ankesh
This is the alternate solution....
Istead of writing like msgbox "Hello" , u can just write ur text in the variable like msgbox_message="Your Text" if you are using the above code..
This would serve ur purpose.
Do let me know if u have a query.
Regards,
Ankesh
As per my knowledge its not possible, but you can create the MsgBox with time limit. use below code
Code:
For i=0 to 3
Set a=createobject("wscript.shell") 'Creat one object
msgbox_message="Your Text"
msgbox_time=5
msgbox_title=""
a.popup msgbox_message,msgbox_time,msgbox_title
Set a=Nothing
Next
Regards,
Ankesh
This is the alternate solution....
Istead of writing like msgbox "Hello" , u can just write ur text in the variable like msgbox_message="Your Text" if you are using the above code..
This would serve ur purpose.
Do let me know if u have a query.
Regards,
Ankesh