Dim App As Object Dim Part As Object Dim Cmds As Object Dim Cmd As Object Dim PartProbes As Object Dim PartProbe As Object Dim ProbeTips As Object Dim ProbeTip As Object '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' Sub Main() OpenPCDMIS 'Initialize PC-DMIS CheckCal ClosePCDMIS 'Release PC-DMIS Objects End Sub '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' Sub CheckCal() 'Calculate Program Run Time Dim CalNeeded$ CalNeeded = 0 For Each Cmd In Cmds If Cmd.IsLoadProbe Then strProbe = Cmd.GetText(FILE_NAME, 0) 'Grab LoadProbe filename If Cmd.IsActiveTip Then 'Grab tip data For previously loaded probe strTip = Cmd.ID Set PartProbes = Part.Probes PartProbes.Visible = False Set PartProbe = PartProbes(strProbe) Set ProbeTips = PartProbe.Tips Set ProbeTip = ProbeTips(strTip) T2 = ProbeTip.Date '** Runtime Error - Object Variable Not Set ** CalDate = ((Month(T2) - 1) * DaysPerMo) + Day(T2) NowDate = ((Month(Now) - 1) * DaysPerMo) + Day(Now) NowDate = NowDate + ((Year(Now) - Year(T2)) * 365) 'Correct For year differences 'check If calibrated In last 7 days If (NowDate - CalDate) >= 7 Or (NowDate - CalDate) < 0 Then CalNeeded = 1 Set NeedsCal = Part.GetVariableValue("NEEDCAL") NeedsCal.StringValue = CalNeeded Part.SetVariableValue "NEEDCAL", NeedsCal Exit Sub 'Exit once Any tip is found To need calibration End If End If Next Cmd End Sub ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' Sub OpenPCDMIS() 'Connect And Populate Appplication Objects Set App = CreateObject("PCDLRN.Application.7.1") ' 7.1 is specific To v2012 MR1 Set Part = App.ActivePartProgram Set Cmds = Part.Commands End Sub Sub ClosePCDMIS() 'Destroy Appplication Objects On Error Resume Next Set App = Nothing Set Part = Nothing Set Cmds = Nothing On Error GoTo 0 End Sub