Hello Guest it is April 20, 2024, 11:09:03 AM

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - zealous

Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 »
211
VB and the development of wizards / Re: openteachfile name
« on: September 05, 2008, 07:36:54 PM »
Hey Nick,

I stubbled across this  :) I dont get much time to come to the forum lately...working on the Mach screen development stuff...

This is what I would do:

Code: [Select]
Dim fso, fldr, s
Set fso = CreateObject("Scripting.FileSystemObject")

'Prompt For Teach file new Name And location
ppp = InputBox("Enter a File Name:")

'Default to C:\ if you just want the name you can allow them to make the file type too
filePath="C:\" + ppp + ".tap"

'Verify
MsgBox ("Copy File: "+ "C:\Mach3\Teach.tap" + " TO: "+ filePath + " ? ")

'Close the FIle if loaded in Mach
DOOEMButton (169)

'If you need to make the user aware there is already a file with that name
If fso.FileExists (filePath) = true Then

'Promt User

End If

'Copy it
fso.CopyFile "C:\Mach3\Teach.tap", filePath


'Open the file
loadfile filePath

'Remove System object Clean up
Set fso = Nothing


Thanks,
Jason Blake

212
Flash Screens / Re: So "Gotcha" work arounds for flash wierdness..........
« on: September 05, 2008, 04:17:27 PM »
Hi James,
We talked via email and worked it out.

The included Flash.DLL provide with the Mach installer is corrupt.
I will provide the working Flash dll to all here in a sticky topic.

 Hopefully Brian will get that fixed.


213
It is fixed in the final release of the screen, as well as a number of other enhancments have been added........I have not had the time to update the "preview" located here.

214
Hey Dave,
I'm sorry ...Mach Motion should have everything up on Monday I belive.
Also will upload the Lathe and Plasma versions...The screen is built from all of the "Mach Components" so I will update these as well. It will be another week or so before everything get uploaded.

215
Mach Screens / Re: Call for G-code display window
« on: July 28, 2008, 11:21:06 PM »
Hey Gerry,
Thats funny we posted at the same time  ;D

216
Mach Screens / Re: Call for G-code display window
« on: July 28, 2008, 11:19:45 PM »
Hey Greg,

Under "General Configuration" in Mach you can set the Gcode editor.

Or

If you need total control on what program to open the currentl loaded file in use something like this on the Edit button:

Code: [Select]
DoOEMbutton(168)'**Close the FIle first**

If(FileName="No File Loaded.")Then'**Check to see a file is loaded**

Print"LOAD A FILE FIRST"

Else

Shell "notepad "+ FileName, vbNormalFocus ' **YOU CAN DO THIS FOR NOTEPAD**

'Shell "C:\Program Files\Internet Explorer\IEXPLORE.EXE "+FileName, vbNormalFocus'**Or open in what you want**

End If

217
Thank you in the final version of the screen all spelling fixed  ;D

Here are the "HELP video's"
<a href="http://www.youtube.com/cp/vjVQa1PpcFPcB6QNHgeaxTc2tYo6C6_8DMgcajogxhw=" target="_blank" rel="noopener noreferrer" class="bbc_link bbc_flash_disabled new_win">http://www.youtube.com/cp/vjVQa1PpcFPcB6QNHgeaxTc2tYo6C6_8DMgcajogxhw=</a>



219
LIVE PREVIEW BELOW CLICK ON THE BELOW SCREEN TO NAVIGATE:

<a href="http://alphagraphicdesigns.com/machmotion/MACH_DEMO/machmotionWebDemo.swf" target="_blank" rel="noopener noreferrer" class="bbc_link bbc_flash_disabled new_win">http://alphagraphicdesigns.com/machmotion/MACH_DEMO/machmotionWebDemo.swf</a>

Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 »