Hello Guest it is April 19, 2024, 10:59:59 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 - TonyG

Pages: 1 2 »
1
VB and the development of wizards / Re: Using the COM API in VB .NET
« on: March 04, 2010, 02:13:54 PM »
I still need some help figuring out how to activate the buttons through the ActiveX Server.

2
VB and the development of wizards / Re: Using the COM API in VB .NET
« on: February 09, 2010, 05:36:20 PM »
I looked at the XLS file that Brett pointed to.  If I understand it correctly, the old number for the Reset button is 1021 and the new number is 44600.  I'm not sure if I should be using old or new.  I tried 1021 and it didn't work, and 44600 is too large for the function call (DoButton function takes a short which in VB is -32k to +32k). 

Where can I find the developer's document that Art mentioned?

3
VB and the development of wizards / Re: Using the COM API in VB .NET
« on: February 09, 2010, 12:23:21 PM »
Where can I find a list of button identifiers to send to the DoButton function?

4
VB and the development of wizards / Re: Using the COM API in VB .NET
« on: February 09, 2010, 10:25:27 AM »
Art,

I have a couple of follow up questions.  After my program opens Mach3, I have to tell the user to click on the Reset button and then the REF ALL HOME button.  I would prefer to execute those two functions automatically through the ActiveX interface.  I found a function called ResetTHC.  Does executing that function do the same thing as hitting the Reset button?  What does THC stand for?  Is there a function I can call that is equivalent to clicking on the  REF ALL HOME button?

5
VB and the development of wizards / Re: Using the COM API in VB .NET
« on: February 02, 2010, 04:00:04 PM »
I was afraid you were going to say that.  I'll just have to adjust my strategy to match.  Thanks for your help.  BTW, once I have the details worked out, I'm going to start a new post explaining how to use the ActiveX server in VB. 

6
VB and the development of wizards / Re: Using the COM API in VB .NET
« on: February 02, 2010, 11:23:32 AM »
Art,

I'm really close to getting this working.  I worked with Microsoft support to get the Visual Basic side of it working.  I now have a VB program that can connect to a running instance of Mach3 and send it GCode commands using the Code() function.  My only problem is that most of the time the ActiveX connection only works once.  The next time I try to connect, I get an exception.

Here's the code from my VB program:

Code: [Select]
Module Module1
    Function Main() As Integer
        Dim GCodeCommand As String
        Dim Mach As Mach4.IMach4
        Dim ScriptObject As Mach4.IMyScriptObject
        Dim ReturnCode As Integer

        ReturnCode = 0

        GCodeCommand = ""

        For Each Argument As String In My.Application.CommandLineArgs
            GCodeCommand = GCodeCommand + Argument + " "
        Next

        If (GCodeCommand <> "") Then
            Try
                Mach = GetObject(, "Mach4.Document")
                ScriptObject = Mach.GetScriptDispatch()
                ScriptObject.Code(GCodeCommand)
            Catch
                ReturnCode = -2
            End Try
        Else
            ReturnCode = -1
        End If

        Return ReturnCode
    End Function
End Module

This is a simple program that takes a G Code command from the command line and sends it to Mach3.  Then the program terminates.  My problem is that usually the next time I run the program, the call to GetObject throws an exception saying that it cannot connect to the ActiveX server.  Once this happens, it continues to happen until I close and reopen Mach3.  It always works the first time after starting Mach3, and sometimes it works multiple times in a row.  But once it fails, it's done.

I suspect that I'm missing some cleanup code, but I'm not sure what it would be.  I tried waiting for the movement to complete via IsMoving before terminating my program, but that didn't make a difference.  I saw that the C++ code sample calls DetachDispatch, but as far as I can tell those functions are part of the OLE class in C++ and are not available in VB. 

Do you have any ideas what could be causing this problem? 

7
VB and the development of wizards / Re: Using the COM API in VB .NET
« on: January 19, 2010, 04:18:41 PM »
Art,

The poster in the thread I referenced claimed that he got it working "perfectly".  That was over a year ago and I don't know what versions of Mach and VB he was using, but if it worked then I would hope it works now.

As another option, I received some sample code showing how to access the COM interface using MFC.  But I can't find any documentation on what functions are available, what parameters they expect, what they return, etc.  Do you know if there's any documentation for the COM API?

Tony

8
VB and the development of wizards / Using the COM API in VB .NET
« on: January 14, 2010, 12:48:01 PM »
I'm trying to use VB .NET to control Mach, and I'm having problems getting things set up.  I searched the forums for help, and the only useful topic I found (http://www.machsupport.com/forum/index.php/topic,8429.msg54415/topicseen.html#msg54415)  mentions adding Mach3 as a component to your project, then gives the following code snipit:

Public Class Form1
     Dim mach As Mach4.IMach4
         mach = GetObject(, "Mach4.Document")
     Dim scriptObject As Mach4.IMyScriptObject
         scriptObject = mach.GetScriptDispatch()

     scriptObject.LoadFile("d:\Mach3\GCode\roadrunner.tap")
End Class

I added the Mach3 component by selecting Project->Add Existing Item (BTW, I'm using VB 2008 Express).  Then I selected the "Mach3.exe".  After that I saw a Mach4 namespace in my component browser window with a class named "CMach4Doc".  I then copied the code into the form procedure and tried to run the program.

The compiler complains that "Mach4.IMach4" is not defined.  Since the class name is CMach4Doc, I also tried "Dim mach As Mach4.CMach4Doc" with the same results.

I'm sure I'm missing something obvious, I just don't know what.

Tony

9
General Mach Discussion / Re: COM API
« on: November 16, 2009, 02:44:26 PM »
Using the parallel port is not a problem.  I just don't know what to send to the parallel port to do what I want.  Essentially I need to write a function that works something like this:

void GoToPosition(int XCoord, int YCoord);

Given a specific X/Y location, what do I send to the parallel port to put the stylus at that position?  I also need to know how to raise and lower the stylus.

10
General Mach Discussion / Re: COM API
« on: November 14, 2009, 12:55:45 PM »
"Something like LabView" is exactly what I want to do.  I don't want to use Mach unless I have to.  How do I send commands to the stepper motors  via LabView/C#/VB/etc.?

Pages: 1 2 »