Your Products have been synced, click here to refresh
It was designed to list feature names...not dimension names.
I named my features- For example:
Cir1= Datum B
SCN2=Top_Profile
etc....
Name the features with Blueprint characteristics if that's what you want, or change the code.
Old, but works very well! The messagebox works fine for me in 2011 MR1.
This is the code I have in my part program:
ASSIGN/NUMBEROUTTOL=0 CS4 =SCRIPT/FILENAME= J:\CMM\REPORTING\SCRIPTS\OUTTOL.BAS FUNCTION/Main,SHOW=NO,, STARTSCRIPT/ ASSIGN/NUMOUTTOL=NUMBEROUTTOL IF/NUMOUTTOL==0 END_IF/ ELSE_IF/NUMOUTTOL>0 COMMENT/OPER,NO,FULL SCREEN=NO,AUTO-CONTINUE=NO, "Part is Bad. There are "+NUMOUTTOL+" dimensions out of tolerance." END_ELSEIF/
I actually end up with two message boxes, one from the script and one from the above code. That way the operator is sure to see (and hopefully read) one of them. We use this for sending data to a customer database. Data is only sent if no dim's are OOT. If there are OOT dim's the operator must re-work the parts until all dim's are in tolerance.
Sub Main() 'This *.bas is a simple, modified version of Craigs modified outtol.bas (whose original author nobody seems To know). 'Jan. 'Modified 9/23/09 DGG To include feature ID In the outtol comment. 'Works With anything up To 2 features, including reference features. 'TP callouts using more than 2 features will Not show reference datums 'beyond the first one. Dim objApp As Object Set objApp = CreateObject("PCDLRN.Application") Dim objPart As Object Set objPart = objApp.ActivePartProgram Dim objCmds As Object Set objCmds = objPart.Commands Dim objCmd As Object Dim objDimCmd As Object Dim dblOutTol As Long dblOutTol = 0 Dim dblTotalMeas As Long dblTotalMeas = 0 Dim objOutTol As Object Set objOutTol = objPart.GetVariableValue("NUMBEROUTTOL") 'number of outtols found Dim prevIDName As String Dim count1 Dim count2 Dim prevcount1 Dim prevcount2 Dim prevID2Name As String Dim objCmdDeviation As Double Dim objCmdOuttol As Double Dim ID As String Dim ID2 As String Dim DimensionName As String Dim Msg As String Dim cnt As Integer For cnt = 1 To objCmds.Count Set objCmd = objCmds.Item(cnt) If objCmd.marked = True Then 'CHECK For MARKED DIMENSIONS HERE If objCmd.IsDimension Then Set DimensionName = objCmd.DimensionCommand ID = DimensionName.feat1 'capture the ID Name of the command that is being looked at. count1 = cnt If ID = "" Then 'Make sure that commands always have a Name. ID = prevIDName count1 = prevcount1 End If prevIDName = ID 'Save the old Name just In Case the Next one is "" prevcount1 = count1 ID2 = DimensionName.feat2 count2 = cnt If ID2 = "" Then ID2 = prevID2Name count2 = prevcount2 End If prevID2Name = ID2 prevcount2 = count2 If count1 = count2 Then 'If .feat1 And .feat2 names were found On the same Line, Then assign them both To the ID thats outtol ID = ID & "-" & ID2 End If End If 'Second Step: first possibility: hunt For legacy dimensions If objCmd.IsDimension And objCmd.Type <> 1000 Then dblTotalMeas = dblTotalMeas + 1 Set objDimCmd = objCmd.DimensionCommand If objDimCmd.OutTol <> 0 Then dblOutTol = dblOutTol + 1 Msg = Msg & ID & Chr(10) End If 'objDimCmd.OutTol<>0 End If 'objCmd.IsDimension 'Third Step: second possibility: hunt For XactMeasure GD&T dimensions If objCmd.Type = 184 Then 'this seems To be the way To find an XactMeasure GD&T Call. ID = objCmd.ID If objCmd.gettext(LINE1_OUTTOL, 1) <> "" Then 'look In Line 1 For an OUTTOL dblTotalMeas = dblTotalMeas + 1 If objCmd.gettext(LINE1_OUTTOL, 1) <> 0 Then 'If there is an OUTTOL In Line 1, is it Not zero? dblOutTol = dblOutTol + 1 Msg = Msg & ID & Chr(10) End If 'objCmd.gettext(LINE1_OUTTOL,1)<>0 End If 'objCmd.gettext(LINE1_OUTTOL,1)<>"" If objCmd.gettext(LINE2_OUTTOL, 1) <> "" Then 'look In Line 2 For an OUTTOL dblTotalMeas = dblTotalMeas + 1 If objCmd.gettext(LINE2_OUTTOL, 1) <> 0 Then 'If there is an OUTTOL In Line 2, is it Not zero? dblOutTol = dblOutTol + 1 Msg = Msg & ID & Chr(10) End If 'objCmd.gettext(LINE1_OUTTOL,1)<>0 End If 'objCmd.gettext(LINE2_OUTTOL,1)<>"" If objCmd.gettext(LINE3_OUTTOL, 1) <> "" Then 'look In Line 3 For an OUTTOL dblTotalMeas = dblTotalMeas + 1 If objCmd.gettext(LINE3_OUTTOL, 1) <> 0 Then 'If there is an OUTTOL In Line 3, is it Not zero? dblOutTol = dblOutTol + 1 Msg = Msg & ID & Chr(10) End If 'objCmd.gettext(LINE3_OUTTOL,1)<>0 End If 'objCmd.gettext(LINE3_OUTTOL,1)<>"" End If 'objCmd.Type=184 End If 'objcmd.marked = True 'End marked search here Next cnt If dblOutTol = 0 Then MsgBox "Part is GOOD!" End If If dblOutTol > 0 Then MsgBox "Part is BAD!" & Chr(10) & "Number of Dimensions Out of Tolerance: " & dblOutTol & Chr(10) & "Features out of tolerance: " & Chr(10) & Msg ' Display the ID's that are out of tolerance End If Set objOutTol.DoubleValue=dblOutTol objPart.SetVariableValue "NUMBEROUTTOL",objOutTol End Sub
© 2025 Hexagon AB and/or its subsidiaries. | Privacy Policy | Cloud Services Agreement |