Hello Guest it is April 30, 2024, 04:23:36 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 - Brian Barker

3611
Newfangled Solutions Mach3 Wizards / Re: Teach Wizard A Bit more
« on: January 15, 2006, 03:43:04 PM »
Art was thinking that the code for the webcam would not be that hard :)

3612
Newfangled Solutions Mach3 Wizards / Re: Teach Wizard A Bit more
« on: January 15, 2006, 11:16:51 AM »
I was thinking about using a Webcam :)

3613
General Mach Discussion / Re: Spindle speed control
« on: January 15, 2006, 11:11:31 AM »
I don't think you can hook them in...

3614
General Mach Discussion / Re: Driver Watchdog Triggered
« on: January 15, 2006, 11:08:04 AM »
On the Diagnostics page there is a button to turn off the tool path display. Try that and see if it fixes the problem.

3615
Newfangled Solutions Mach3 Wizards / Re: Teach Wizard A Bit more
« on: January 15, 2006, 07:31:11 AM »
I think it is just not with the printer port version.... I will see if that can be done once the Grex is on line. The Grex can take decode the encoders MUCH faster than the P port.

3616
How are you doing with the Save file thing??? Did it work as you had hoped?

3617
General Mach Discussion / Re: computer overscans page
« on: January 14, 2006, 09:10:48 PM »
On the desk top can you set the screen to 1024 X 768?

There is also a setting under Config/State Auto Screen Enlage please see that this is ckecked.

As for the labtop I don't think it is goingt to work...



3618
End page :)


3619
Sure just use the same userlable.

Hope that helps
Brian

3620
Put this in a button :) This is going to make your head hurt ....

This should do it
Brian


Begin Dialog FILERENAME 15,42, 213, 62, "File Save"
  Text 20,12,60,12, "Enter File Name:"
  TextBox 84,12,100,12,  .EditBox_1
  OKButton 36,36,37,12
  CancelButton 136,36,37,12
End Dialog


Dim Dlg1 As FILERENAME
Dlg1.EditBox_1 = "*.tap"
Button = Dialog (Dlg1)
 If Button = 0 Then
    Exit Sub
 End If   
 Newfilename = "C:\Mach3\GCode\" + Dlg1.EditBox_1
 FileCopy "C:\Mach3\GCode\turn.tap", Newfilename 
 MsgBox ("File Saved to" &  Newfilename )