home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Freelog 117
/
FreelogNo117-OctobreNovembre2013.iso
/
Theme
/
8GadgetPack
/
8GadgetPackSetup.msi
/
Gadgets.7z
/
Gadgets
/
MyWeather.gadget
/
de
/
js
/
alert.vbs
next >
Wrap
Text File
|
2012-09-30
|
344b
|
16 lines
'simulate JavaScript alert() function
sub alert(prompt)
MsgBox prompt, 48 , "Sidebar Gadget"
end sub
'simulate JavaScript confirm() function
function confirm(prompt)
dim res
res = MsgBox (prompt, 33, "Sidebar Gadget")
if res=1 then
confirm = true
else
confirm = false
end if
end function