VBcoders Browse New Submit Contact Sign In

No account? Register free

Forgot password?

Launch IE inEditMode

M. J. Highlander  (20 Submissions)   Internet/HTML   VB Script   Intermediate   Wed 3rd February 2021

This is a VB Script to Launch IE in Edit Mode, that is it functions kinda like FrontPage, supports command-line arguments it also can be done in VB, check it out so simple!

Inputs
Option Explicit Main Public Sub Main () Dim Args , FileName , ie Set Args = WScript.Arguments If Args.Count > 0 Then FileName = Args(0) Else FileName = "about:blank" End If Set Args = Nothing Set ie=CreateObject("InternetExplorer.Application") ie.Visible=true ie.Navigate FileName ie.Document.designMode = "On" set ie=Nothing End Sub

Rate Launch IE inEditMode (3(3 Vote))

Download Launch IE inEditMode

Launch IE inEditMode Comments

No comments yet — be the first to post one!

Post a Comment

0/1000 characters