README.md
December 4, 2022 ยท View on GitHub
Description
Have you ever wanted to open a new window without a toolbar at the top and a scrollbar on the side? Well this is exactly what this vbscript code does. (please vote for this code if you like it)
More Info
Open a new non-toolbar window with vbscript.
nothing at all
| Submitted On | |
| By | VisualBlind |
| Level | Intermediate |
| User Rating | 4.0 (20 globes from 5 users) |
| Compatibility | ASP (Active Server Pages), VbScript (browser/client side) |
Category |Miscellaneous World |ASP / VbScript Archive File |
API Declarations
This code is not copyrighted therefore you may use it at your own will.
Source Code
<Script Language = "vbscript">
Sub B1_OnClick()
Window.open "access.html","fastftp","toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=1,width=403,height=250"
B1.Value = " File Downloaded! "
end sub
</script>