VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



Launch IE inEditMode

by M. J. Highlander (20 Submissions)
Category: Internet/HTML
Compatability: VB Script
Difficulty: Intermediate
Date Added: Wed 3rd February 2021
Rating: (3 Votes)

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

Download Launch IE inEditMode

Download Launch IE inEditMode (423 Bytes)

Launch IE inEditMode Comments

No comments have been posted about Launch IE inEditMode. Why not be the first to post a comment about Launch IE inEditMode.

Post your comment

Subject:
Message:
0/1000 characters