hexagon logo

Browse By Tags

  • VB.Net Automation of MovePoint Values

    I can insert MovePoints using VB.Net with the Command Object as shown. Dim PCDcommands As PCDLRN.Commands Dim NewCMD As PCDLRN.Command NewCMD = PCDcommands.Add(PCDLRN.OBTYPE.MOVE_POINT, True) However, I cannot change the X,Y,Z values. It's…
  • VB.Net - Stop program execution

    How can I stop a program from continuing if an error is encountered in my code? I've tried ActivePartProgram.Quit ActivePartProgram.Close but neither have worked... Any ideas?
  • PDLRN - How to get the number of parts from multipart program

    In a program which is set up to measure multiple parts, how can I get the part count from PCDMIS? Is it a matter of getting the loop count or is there a more sophisticated way? I'm using vb.net. Thanks