Machsupport Forum

Mach Discussion => General Mach Discussion => Topic started by: MavStone on December 10, 2014, 11:13:02 AM

Title: I'm having a problem with OEM-code 321 (Run Newfangled Wizard) in machturn.
Post by: MavStone on December 10, 2014, 11:13:02 AM
I want to add a button to my screen set to pull up and run the Newfangled Turn Wizard. I have an OEM-code 230 (Display Wizard selection window) on my screen which does open the wizard selection window. However, went I press my OEM-code 321 button it doen't do anything.

It seem like 321 should open the wizard and run it.

Thx Mav
Title: Re: I'm having a problem with OEM-code 321 (Run Newfangled Wizard) in machturn.
Post by: ger21 on December 10, 2014, 11:49:05 AM
You can use a VB Script in the button to call the wizard by name and run it. Use the LoadWizard function.
Title: Re: I'm having a problem with OEM-code 321 (Run Newfangled Wizard) in machturn.
Post by: MavStone on December 10, 2014, 12:49:32 PM
Thanks Gerry,

I'll give that a try.
Title: Re: I'm having a problem with OEM-code 321 (Run Newfangled Wizard) in machturn.
Post by: ger21 on December 10, 2014, 12:52:14 PM
Try either :

LoadWizard(“NFSturn”)

or

LoadWizard “NFSturn”


Make sure the name is correct. I don't have Mach3 installed here, so I can't check right now.
Title: Re: I'm having a problem with OEM-code 321 (Run Newfangled Wizard) in machturn.
Post by: MavStone on December 10, 2014, 12:58:12 PM
Wow......... Thanks Gerry.

LoadWizard("NFSturn")

That did the trick.


Thanks for your help!!