VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



Client side scripting showing information in client-side scripting without using Msgbox of vbscript

by M.santosh kumar (4 Submissions)
Category: Miscellaneous
Compatability: VB 6.0
Difficulty: Unknown Difficulty
Originally Published: Sat 13th July 2002
Date Added: Mon 8th February 2021
Rating: (1 Votes)

Client side scripting showing information in client-side scripting without using Msgbox of vbscript and alert of the javascript

API Declarations



the code uses the methods of the component "wscript.Shell"

this component has a method called "popup"
the syntax is popup (text,secondstowait,title,type)


Rate Client side scripting showing information in client-side scripting without using Msgbox of vbscript



<script language="vbs">
dim str1,str
set  obj =createobject("wscript.Shell.1")
obj.Popup "Welcome  to VBScript",1,"Hello"

</script>



Javascript  Example 

<script  language ="javascript">
var obj 
obj = new   ActiveXObject("Wscript.Shell.1")
obj.Popup("Welcome  From  Javascript",1,"Hello"); 
</script>

Download this snippet    Add to My Saved Code

Client side scripting showing information in client-side scripting without using Msgbox of vbscript Comments

No comments have been posted about Client side scripting showing information in client-side scripting without using Msgbox of vbscript. Why not be the first to post a comment about Client side scripting showing information in client-side scripting without using Msgbox of vbscript.

Post your comment

Subject:
Message:
0/1000 characters