I have a form that will multiple the unit price by the quanity when the quantity textbox loses focus.
eg:
Private Sub txtPart3Quantity_LostFocus()
CalculateOrder

End Sub
But when i tab off the quantity textbox, an error comes up saying there was a problem with MS communicating with the OLE server or ActiveX Control.
What does this mean?
Do I have to set the textbox to some certain setting or something?
I thought lost_focus meant when I tabbed off the textbox my function would calculate.