README.md

December 4, 2022 ยท View on GitHub

VBScript opening a non-toolbar window

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
ByVisualBlind
LevelIntermediate
User Rating4.0 (20 globes from 5 users)
CompatibilityASP (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>