Jump to content

Welcome to eMastercam

Register now to participate in the forums, access the download area, buy Mastercam training materials, post processors and more. This message will be removed once you have signed in.

Use your display name or email address to sign in:

toolbar buttons


Recommended Posts

Guest CNC Apps Guy 1

Copy and save this VB Script, and map the script to a button and voila!!!

 

HTH

biggrin.gif

 

code:

'////////////////////////////////////////////////////////////////////////////////

'//

'// Author: Mick George [email protected]

'// Date: 09/09/2003

'// File Name: LaunchIE

'//

'// Description: Launches IE
:D

'//

'// Comments: Object properties located at

'//

'//

'////////////////////////////////////////////////////////////////////////////////

 

 

 

' -- Start Script

Call Main()

 

 

' ////////////////////

' Sub Declaration

' ////////////////////

Sub Main()

 

On Error Resume Next

 

Dim objIE

 

' Create the IE object and sets some parameters

Set objIE = CreateObject("InternetExplorer.Application")

 

If objIE Is Nothing Then Exit Sub

 

If Err Then

ShowString "Error loading Internet Explorer " & Err.Description

Exit Sub

End If

 

With objIE

 

.Navigate "

.ToolBar = True

.StatusBar = True

.Resizable = True

 

Do

' Zzzzzz....

Loop While .Busy

 

.Width = 800

.Height = 600

.Left = 50

.Top = 50

.Visible = True

 

End With

 

 

Set objIE = Nothing

 

 

End Sub

Link to comment
Share on other sites

Bucket Head wrote that he'd like to use James' avatar in the following way:

______________________________________

It would replace the current 'crappy' help button!

I would click on it and have instant help on any project that I needed.

_______________________________________

 

We always try to improve the help we provide. Can you describe or give an example of how the help has missed the mark?

 

Thanks in advance for your comments.

 

eileen at CNC Tech Docs

Link to comment
Share on other sites

It was supposed to be a Joke biggrin.gif

LMAO cheers.gif

To eloborate,James is a very knowledgable person on this forum.

And has helped me out many a time.

If I could have a toolbar button that I could click on,and have personal instant help from him,this would 'blow away' the current help toolbar button.

Now do ya get it??? wink.gif

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.

Join us!

eMastercam - your online source for all things Mastercam.

Together, we are the strongest Mastercam community on the web with over 56,000 members, and our online store offers a wide selection of training materials for all applications and skill levels.

Follow us

×
×
  • Create New...