Private Sub CommandButtonBend_Click()
Application.ScreenUpdating = False
Load BOM_Standard_Costs_Template
If ActiveCell.Column = 3 And ActiveCell.Row >= 3 Then
With Selection
Application.Run "AddRow"
Application.Run "NoIndent"
Selection.Value = "BENDING"
ActiveCell.Offset(0, 2).Value = "Press Brake"
ActiveCell.Offset(0, 3).Value = "MIN"
ActiveCell.Select
End With
Else
End If
Application.ScreenUpdating = True
End Sub
Private Sub CloseButton_Click()
Unload Me
End Sub
Private Sub CommandButtonFloorSignOff_Click()
Application.ScreenUpdating = False
Load BOM_Standard_Costs_Template
If ActiveCell.Column = 3 Then
With Selection
Application.Run "AddRow"
Application.Run "NoIndent"
Selection.Value = "FINAL INSPECTION"
ActiveCell.Offset(0, 2).Value = "Inspection"
ActiveCell.Offset(0, 3).Value = "MIN"
ActiveCell.Select
End With
Else
End If
Application.ScreenUpdating = True
End Sub
Private Sub CommandButtonFinal_Click()
Load BOM_Standard_Costs_Template
Application.ScreenUpdating = False
If ActiveCell.Column = 3 Then
With Selection
Application.Run "AddRow"
Application.Run "NoIndent"
Selection.Value = "DIMENSIONAL INSPECTION"
ActiveCell.Offset(0, 2).Value = "Inspection"
ActiveCell.Offset(0, 3).Value = "MIN"
ActiveCell.Select
End With
Else
End If
Application.ScreenUpdating = True
End Sub
Private Sub CommandButtonLaserCutting_Click()
Load BOM_Standard_Costs_Template
Application.ScreenUpdating = False
If ActiveCell.Column = 3 Then
With Selection
Application.Run "AddRow"
Application.Run "NoIndent"
Selection.Value = "LASER CUTTING"
ActiveCell.Offset(0, 2).Value = "Laser Cut"
ActiveCell.Offset(0, 3).Value = "SQ IN"
ActiveCell.Select
End With
Else
End If
Application.ScreenUpdating = True
End Sub
Private Sub CommandButtonVirtek_Click()
Load BOM_Standard_Costs_Template
Application.ScreenUpdating = False
If ActiveCell.Column = 3 Then
With Selection
Application.Run "AddRow"
Application.Run "NoIndent"
Selection.Value = "VIRTEK INSPECTION"
ActiveCell.Offset(0, 2).Value = "Inspection"
ActiveCell.Offset(0, 3).Value = "MIN"
ActiveCell.Select
End With
Else
End If
Application.ScreenUpdating = True
End Sub
Private Sub CommandButtonWelderA_Click()
Load BOM_Standard_Costs_Template
Application.ScreenUpdating = False
If ActiveCell.Column = 3 Then
With Selection
Application.Run "AddRow"
Application.Run "NoIndent"
Selection.Value = "WELDER - A"
ActiveCell.Offset(0, 2).Value = "Welder - A"
ActiveCell.Offset(0, 3).Value = "MIN"
ActiveCell.Select
End With
Else
End If
Application.ScreenUpdating = True
End Sub
Private Sub CommandButtonWelderB_Click()
Load BOM_Standard_Costs_Template
Application.ScreenUpdating = False
If ActiveCell.Column = 3 Then
With Selection
Application.Run "AddRow"
Application.Run "NoIndent"
Selection.Value = "WELDER - B"
ActiveCell.Offset(0, 2).Value = "Welder - B"
ActiveCell.Offset(0, 3).Value = "MIN"
ActiveCell.Select
End With
Else
End If
Application.ScreenUpdating = True
End Sub