Your Products have been synced, click here to refresh
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; } }
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?
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.
PCD_PartProgram := PCD_PartPrograms.Open(LocalFileName, [COLOR=#0000FF][B]'CMM1'[/B][/COLOR]);
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;
© 2024 Hexagon AB and/or its subsidiaries. | Privacy Policy | Cloud Services Agreement |