Hello Guest it is May 13, 2024, 11:59:44 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 - swarfboy

Pages: « 1 2 3 4 5 6 7 8 »
11
General Mach Discussion / Mach3 R3.042.033 overfeed bug
« on: December 29, 2009, 04:13:42 PM »
I upgraded from version 0.20 to 0.033 and find that 0.033 is overfeeding by around +25% on Jog and G0 and G1 moves.

12
I too have found that velocity behavior is overfeeding with version 0.032.

Please fix this.

13
VB and the development of wizards / Re: Mach Script Interpreter Bugs
« on: January 15, 2009, 06:08:55 PM »
I did code MsgBox into my scripts and its a nicer control than just print. But print is quick and dirty when you just need to display an OK box.

I tried to apply for the Yahoo forum and never got an email. Not to mention I don't understand why people don't use the mach site forum for mach related issues. Why a third party newsgroup, SMF is wayyy nicer than a hard to read unorganized news group.

14
VB and the development of wizards / Mach Script Interpreter Bugs
« on: January 15, 2009, 10:33:53 AM »
1. Print function no longer works. This used to work now it fails. It happened in one of the updates I'm running the lockdown now.

Sub Main()
Dim X as Int
X = 1
Print X
End Sub

2. GetVar(2002) returns the wrong value. Its -100 off of the correct value.

15
VB and the development of wizards / Re: Esc key event
« on: January 15, 2009, 09:38:35 AM »
There is no such function.   http://www.cypressinc.com/enduser.pdf

There should be a key press event built into mach because you can assign hotkeys.
I need to know how to assign these keys via a script so I can assign Esc = Exit Sub

I believe what Esc is currently canceling the While/Wend loop and jumping to the next While/Wend in my script.


16
VB and the development of wizards / Esc key event
« on: January 14, 2009, 05:24:15 PM »
I have a homing and probing script that I wrote that is called from an external .m1s from a button in my screen set. The script runs fine but if the user hits the esc key during runtime the script doesn't exit. It stops current function and moves to the next function so you have to hit the esc key 3 times before it exits the script. How can I exit the script completely on the esc key event.


17
General Mach Discussion / Re: Booting straight into Mach
« on: December 03, 2008, 03:48:38 AM »
If your goal is to make a dedicated mach controller you might want to look at http://www.microsoft.com/windowsembedded/en-us/products/westandard/default.mspx
This is an embedded version of windows designed for OEMs.

18
VB and the development of wizards / Re: MsgBox()
« on: November 21, 2008, 01:15:05 PM »
Lol. I understand why i needed to read it. It was involved. Well I got it working and here is my code.

Msg = "Will now probe tool to calculate Z to Probe distance."
Style = 4 + 64 + 0
Title = "Fixture Setup"
Response = MsgBox(Msg, Style, Title)
   If Response = 6 Then
      code "M101"
   Else
      Exit Sub
   End If

I couldn't find the cypress enable language reference on the wiki. I ended up googling it and found it on another website. Can someone provide a link b/c even the wiki's page search function turned up zero results.

19
VB and the development of wizards / MsgBox()
« on: November 20, 2008, 11:44:48 PM »
mach3.042.020 throws a  compile error when I try to use button parameters with MsgBox()

ie. MsgBox("test", 2 ,"test")

Does mach have all VB parameters?


20
General Mach Discussion / Re: Bugs in Mach 3.42.015
« on: November 20, 2008, 12:16:00 PM »
The bugs that started this thread have been fixed in ver020. Yay! Thank you.

Pages: « 1 2 3 4 5 6 7 8 »