Hello Guest it is May 17, 2024, 02:05:36 PM

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

2011
General Mach Discussion / Re: Round Corners Motor tuening?
« on: November 12, 2006, 07:12:35 PM »
is it running in Demo mode?
Check under Help/About and tell me what version you are running

Thanks

2012
General Mach Discussion / Re: Sorry for not doing my job :(
« on: November 12, 2006, 07:05:17 PM »
The Support is a killer :) But I am back doing it first thing when I get up and again at about 6:00 EST to about 11:00. It is like the 3rd job ;)

2013
Also try putting the G90 on a single line and I think you will be happy ;)

2014
General Mach Discussion / Re: Problems with Arcs in the X/Z Plane
« on: November 12, 2006, 06:46:32 PM »
Yup post your code and TRUST the toolpath!!!!!!!! We put that there to keep you out of trouble ;)  You post it and I think we can fix it  (Or your code if that is the problem)

2015
VB and the development of wizards / Re: Macro Controlling Multiple Outputs
« on: November 11, 2006, 01:11:42 PM »
Sub End is to end a Subroutine

Wend is the end of a While loop

End ... there is no end :) There is an End if and this tells the end of an if statement


Thanks
Brian

2016
VB and the development of wizards / Re: Macro Controlling Multiple Outputs
« on: November 11, 2006, 09:09:19 AM »
This is what I like to see :) you tried and all I have to do is a little work to the script! You get a star for the day ;)

Okay you are VERY close to haveing what you need... this should work for you:

Rem  M3 Macro
Dim IgnitionDelay, PreheatDelay, PierceDelay
IgnitionDelay = getUserDRO (1001)
PreheatDelay = getUserDRO (1002)
PierceDelay = getUserDRO (1003)

ActivateSignal(Output1)
code "G4 P" & (IgnitionDelay)
While IsMoving()
Wend

ActivateSignal(Output2)
code "G4 P" & (PreheatDelay)
While IsMoving()
Wend

ActivateSignal(Output3)
code "G4 P" & (PierceDelay)
While IsMoving()
Wend
End

2017
VB and the development of wizards / Re: Internal taper wizard
« on: November 10, 2006, 06:26:58 PM »
That is a good idea but I think that is going to have to be put off for the Lathe CAM and we hope to do... Art and I have lathes that we would like to make code for!

2018
General Mach Discussion / Re: Softlimits
« on: November 10, 2006, 06:23:13 PM »
I think that Art needs a bit more data to show right where the problem is... IT is very hard to get stuff like this fixed when you are sitting at your desk and it is not doing it :(

2019
General Mach Discussion / Re: Tangential control
« on: November 10, 2006, 06:20:41 PM »
Art fixed it some time ago (I think) It is a tool that I never seem to use :( I think that I need to get somthing that needs it ;)

2020
General Mach Discussion / Re: Zoom in Mach 3
« on: November 10, 2006, 06:04:00 PM »
Okay I think we can fix that... I will see if I can find where Art is doing that in the code   ;D