Greyowlsl
Mlak Mlak
- Local time
- Today, 16:56
- Joined
- Oct 4, 2006
- Messages
- 204
Hi,
The code below wont seem to do anything, doesn't fill in anything
Thanks,
Leon
The code below wont seem to do anything, doesn't fill in anything
Code:
Private Sub cboTypeOfService_AfterUpdate()
If Me.cboTypeOfService = "Warranty Exchange" Or Me.cboTypeOfService = "Dealer Exchange" Then
Me![FAULT_WARRANTY_EX] = "1"
Me.Refresh
Me.txtCustomerComments = "Exchange"
Else: GoTo NO_FAULT_EX
End If
NO_FAULT_EX:
Me![FAULT_WARRANTY_EX] = "0"
Me.Refresh
If Me.txtCustomerComments = "Exchange" Then
Me.txtCustomerComments = ""
End If
end sub
Thanks,
Leon