hexagon logo

PC-DMIS 2017 (interop.pcdlrn.dll) issue on profile of a surface measurements

Hi,

i am software programer so i dont really know about inspection and CMM.

i am having issue using the library interop.pcdlrn.dll for the command "perimeter scan" for a "profile of surface".


when i'm using the librairy it shows a measurement value of 0 like if the machine is offline. but when i use the software PC-DMIS, i have the good results.


but when i do a "constructed set" for a "profile of surface" i have good results either if im using the library or the software.

i dont't understand how the library can act differently from the software. this strange behavior prevents us to use the custom software on the prod environnment.

because im a software programmer i dont really know how to express myself in this forum so i'm sorry if i dont give enough details

  • I am not sure if the images would matter, because I cannot see them, only the written links.

    Post the code you are using, maybe the entire project, so we can try to identify the issue. Maybe someone has already solved that same problem. . . .
  • Hi Don,

    See the attached file " samplecode.txt " this is the c# code i'm using to execute the .prg file:

    private void runProgram()
            {
                foreach (var process in Process.GetProcessesByName("PCDLRN"))
                {
                    process.Kill();
                }
                Thread.Sleep(1000);
    
                //COPYING .PRG AND .CAD FILE FROM NETWORK FOLDER TO A LOCAL FOLDER (c:\\TEMPCMM\\)
                themodel.Instance.statusBar = string.Format("PROGRAM DOWNLOADING ...");
                FileInfo tempPrg = new FileInfo(themodel.Instance.programPath);
                FileInfo tempCad = new FileInfo(themodel.Instance.cadPath);
                FileInfo reportPath = new FileInfo(themodel.Instance.reportPath);
    
                DirectoryInfo tempFolder = new DirectoryInfo("c:\\TEMPCMM\\");
    
                if (!Directory.Exists(tempFolder.FullName))
                {
                    Directory.CreateDirectory(tempFolder.FullName);
                }
    
                File.Copy(tempPrg.FullName, Path.Combine(tempFolder.FullName, tempPrg.Name), true);
                File.Copy(tempCad.FullName, Path.Combine(tempFolder.FullName, tempCad.Name), true);
    
                //THE PROGRAM FILE
                tempPrg = new FileInfo(Path.Combine(tempFolder.FullName, tempPrg.Name));
                tempCad = new FileInfo(Path.Combine(tempFolder.FullName, tempCad.Name));
    
                PCDLRN.Application PCDApp = null;
                PCDLRN.IPartPrograms PCDPartPrograms = null;
                PCDLRN.PartProgram pcdActivePart = null;
                ApplicationObjectEvents AppEvents = null;
    
                try
                {
                    initPCDMIS(tempPrg, out PCDApp, out PCDPartPrograms, out pcdActivePart);
                }
                catch (System.Exception)
                {
                    MessageBox.Show("PC-DMIS needs to be started!"); // PC-DMIS needs to be started!
                    Thread.CurrentThread.Abort();
                }
    
    
                if (PCDApp != null && PCDPartPrograms != null && pcdActivePart != null)
                {
                    var pcdCommands = pcdActivePart.Commands;
                    int commandCount = pcdCommands.Count;
    
                    PCDApp.OperatorMode = false;
                    PCDApp.Visible = visible;
    
                    themodel.Instance.statusBar = string.Format("PROGRAM EXECUTION ...");
    
                    try
                    {
                        Thread.Sleep(1000);
    
                        active_probe msgbox = new active_probe("IS THE PROBE " + PCDApp.DefaultProbeFile + " CURRENTLY ACTIVE ?");
    
                        msgbox.ShowDialog();
    
                        if (msgbox.yesno)
                        {
                            Thread.Sleep(2000);
                            //execut
                            pcdActivePart.EXECUTE();
                            pcdActivePart.SaveAs(Path.ChangeExtension(reportPath.FullName, ".PRG"));
                        }
                    }
                    catch (Exception ex)
                    {
                        themodel.Instance.statusBar = string.Format("ERROR DURING EXECUTION");
    
    
                        //try to close the program
                        while (PCDApp.ActivePartProgram != null)
                        {
                            //try to close the program
                            try
                            {
                                pcdActivePart.Quit();
                            }
                            //if it fails to close, wait 0.5 seconds (then the loop runs again)
                            catch { System.Threading.Thread.Sleep(500); }
                        }
    
    
    
                        File.Delete(tempPrg.FullName);
                        File.Delete(tempCad.FullName);
    
                        PCDPartPrograms = null;
                        pcdActivePart = null;
    
    
                        foreach (var process in Process.GetProcessesByName("PCDLRN"))
                        {
                            process.Kill();
                        }
    
                        Thread.CurrentThread.Abort();
                    }
    
                    Thread.Sleep(10000);
    
    
                    //Quit();
                    while (PCDApp.ActivePartProgram != null)
                    {
                        //try to close the program
                        try
                        {
                            pcdActivePart.Quit();
                        }
                        //if it fails to close, wait 0.5 seconds (then the loop runs again)
                        catch { System.Threading.Thread.Sleep(500); }
                    }
    
                    PCDPartPrograms = null;
                    pcdActivePart = null;
                }
            }


    for the library INTEROP.PCDLRN.DLL, i'm using v12.2.0.0, you can see attached file "dll_version.PNG" for more details



    for the software PC-DMIS 2017 R2 64-bit, i'm using the build #1260, you can see attached file "software_version.PNG" for more details.


    for the moment i cannot upload the .PRG file.



    A "perimeter scan" for a "profile of surface" generated from the custom program:




    A "perimeter scan" for a "profile of surface" generated from the software:






    to solve the probleme, the first things i am wondering is:


    what are all the temporary files generated by the program for ?
    do i correctly open and close pc-dmis from my c# program ?
    is there possibility of mismatch between dll version and sotware version ?


    Attached Files
  • I don't see anywhere in the code where you are trying to get a profile dimension. I am a little confused about your question. Are you only trying to execute it through C# and produce a report from the PC-DMIS application?

    I am not sure which temporary files you are referring to. There are files for probe calibrations, toolchanger calibrations, rotary table calibrations, statistics, and more. Can you gie me an example of which temporary files you are asking about?

    There does not need to be a 1:1 correlation between the interop and PC-DMIS version. The only time a problem would arise if you were accessing some new commands which might not have been in an older interop, but that is not the case here.

    Let's start over. What are you trying to accomplish with this C# utility?
  • I don't see anywhere in the code where you are trying to get a profile dimension. I am a little confused about your question. Are you only trying to execute it through C# and produce a report from the PC-DMIS application?

    I am not sure which temporary files you are referring to. There are files for probe calibrations, toolchanger calibrations, rotary table calibrations, statistics, and more. Can you gie me an example of which temporary files you are asking about?

    There does not need to be a 1:1 correlation between the interop and PC-DMIS version. The only time a problem would arise if you were accessing some new commands which might not have been in an older interop, but that is not the case here.

    Let's start over. What are you trying to accomplish with this C# utility?


    Hey Don,

    Yes exactly, the only thing i am trying to do is to execute it through c#.

    When I execute PC-DMIS trough c#, the generated PDF report is different at a specific command result. This command is a "perimeter scan" for a "profile of surface". It shows 0.0000 with an online machine (i don't know if it's linked, but when i execute it through c# with an offline machine, it shows a value on DEV like in this post, but i have absolutly no technical skill on inspection stuff and it is sometimes hard for a programmer to convince non programmer that bug is not only from code.).

    - PC-DMIS trough c# :



    - PC-DMIS trough PC-DMIS:





    I mentioned temporary file because all the cmm programs are stored on a network folder. As seen on the c# sample code, Each time a program is needed for inspection, the custom software do a local copy of the .prg file and the .cad file on
    c:\\TEMPCMM\\ so the network cannot cause issue on the inspection process. all executed programs are executed from c:\\TEMPCMM\\ . i noticed temporary hidden files like

  • OK, I need to think about your original problem but the temporary files are backup copies of the PRG made on opening and then closing the PRG. To disable those, there is a registry setting called DocumentRecovery you can set to False.

    I don't immediately see anything wrong with the code, but there are more questions now -

    I just now saw your detail "it shows a measurement value of 0 like if the machine is offline". Are you aware that offline ALWAYS shows perfect results. There is no real data coming from the CMM.
  • OK, I need to think about your original problem but the temporary files are backup copies of the PRG made on opening and then closing the PRG. I don't remember right now how to disable those.

    I don't immediately see anything wrong with the code, but there are more questions now -

    I just now saw your detail "it shows a measurement value of 0 like if the machine is offline". Are you aware that offline ALWAYS shows perfect results. There is no real data coming from the CMM.


    Yes Don, i know about the machine offline. That's the problem, for this specific command, even if the machine is online and physically running, perfect results are outputed: 0.0000 and normal results are outputed for others points of the report.

    But when I run my program with the machine offline, deviation sometimes shows a not perfect result like describe in the follow topic:

    https://www.pcdmisforum.com/forum/pc...line-deviation



    here is the results "Offline" trough c#:



    here is the results "Online" trough c#:




    here is a random report of another part with a "scan operation" "Online" trough C#:




  • Are you just running/executing the part program through C# or are you also generating the program through automation?
  • You don't show the initPCDMIS(...) subroutine, and it is rather important how you open the part program. You have to tell PC-DMIS which machine the program should run on (or OFFLINE).
    From my own barcode pp starter programmed in Delphi Pascal:

        PCD_PartProgram := PCD_PartPrograms.Open(LocalFileName, [COLOR=#0000FF][B]'CMM1'[/B][/COLOR]);
    


    Also, only one PP can have the machine, normally the one you open first. Opening two PP:s in PC-DMIS will open the second one offline, so you need to make sure there are no other PP:s open, before you open the one you want to run.

              while (PCD_PartPrograms.Count > 0) do begin
                PCD_PartProgram := PCD_Application.ActivePartProgram;
                if not VarIsEmpty(PCD_PartProgram) then begin
                  PCD_PartProgram.Close;
                  PCD_PartProgram := null;
                end
              end;
    

  • Anders, I too was confused by some of the details, and lack thereof. r.nitubu, let me ask this a different way. Do you see the machine moving when you run it from the script. I suspect you are getting frustrated with these questions, but when we assume, well. . . . .

    Aside from that, we wrote a simple VBA automation project to execute a similar program using a perimeter scan and then a surface profile, executing online there was no problem.

    Can you attach ALL the files involved please? The PRG, the c# project with all subs and functions, and whatever else might be included and we will try it again here in a different way.

    and. . . let me ask you for one more file. In PC-DMIS, make sure debug is enabled. You'll find this under Edit - Preferences - Machine Interface Setup and then the Debug tab. Enable the debug log, then exit PC-DMIS. Now start PC-DMIS (without automation) and execute that same routine. Then exit PC-DMIS and send the debug file. It is usually called debug.text and found in the folder named C:\ProgramData\Hexagon\PC-DMIS\2017 R2 with that last folder based on whatever version you are using. Please send that file also
  • Sorry to everybody if I'm not clear.

    Are you just running/executing the part program through C# or are you also generating the program through automation?


    hey vpt.se,

    No., I just running/executing the part program through C#.