Microsoft
Software
Hardware
Network
Question : After Update in Access
I am reposting this question as can't seem to solve and I may have originally not posted in enough areas:
I have a form where a user enters a client ID number [txtDBNO] as well as an item [comboitem]; the form is bound to table [tblCharges]. The code I''m using is supposed to look up the [txtDBNO] in the table [tblClient] and determine whether this client is supposed to be assesed [HasHandlingCharge] and if so it then is supposed to return the logical value [HasHandlingCharge] to the [chkHandlingCharge] and enter that into [tblCharges].
The users enter the [txtDBNO] first and then enters the [comboItem] and the code I'm using returns the correct value into [chkHandlingCharge]. And if the user changes his/her mind and changes the [comboItem] the code will replace the current contents of [chkHandlingCharge] correctly.
However, if the user is happy with what is in [comboItem] but realizes they have the wrong [txtDBNO] and changes it, the [chkHandling] does not change accordingly. Puzzled and confused what I'm doing wrong. I have two AfterUpdate routines... What am I doing wrong? How can I fix? Thanks! (AfterUpdate does mean after a change has been made to a control and you move to a different control, correct? Sorry for pedantic questions, I'm very much new to this). Thanks.
Private Sub comboItem_AfterUpdate()
If Nz(DLookup("HasHandlingCha
rge", "tblClient", "DBNO = '" & txtDBNO & "'"), False) = True Then
chkHandlingCharge = DLookup("HandlingCharge", "tblItems", "Item = '" & comboItem & "'")
Else
chkHandlingCharge = False
End If
End Sub
--------------------------
----------
----------
----------
----------
----------
----------
----------
----------
--------
Private Sub txtDBNO_AfterUpdate()
If Nz(DLookup("HasHandlingCha
rge", "tblClient", "DBNO = '" & txtDBNO & "'"), False) = True Then
chkHandlingCharge = DLookup("HandlingCharge", "tblItems", "Item = '" & comboItem & "'")
Else
chkHandlingCharge = False
End If
End Sub
Answer : After Update in Access
Is chkHandlingCharge a CheckBox Control on your Form??? You can only set a CheckBox to True or False.
Can you load up a sample of your db???
ET
Random Solutions
Need help troubleshooting VMware ESXi 4.0 PSoD
Position cursor to specified line in multiline textbox
Problem with Delete in MS Word 2003
Keeping Look Ups in a Make Tabel Query
Excel Instance Left in Memory after Access Automation
Calander pop up control in tables
Multiple IIF statement error
Can you install Vista / windows 7 to winnt directory
thread to simulate several executions
How can I transfer Adobe CS2 license to another system?