B bella Registered User. Local time Today, 12:17 Joined Jul 31, 2003 Messages 38 Aug 20, 2003 #21 checkbox
Mile-O Back once again... Local time Today, 12:17 Joined Dec 10, 2002 Messages 11,316 Aug 20, 2003 #22 bella said: the purpose of my text boxes is if the user selects chk1 Click to expand... What textboxes?
bella said: the purpose of my text boxes is if the user selects chk1 Click to expand... What textboxes?
R Rich Guest Aug 20, 2003 #23 Here's a very quick example of an unbound checkbox Last edited: Aug 21, 2008
B bella Registered User. Local time Today, 12:17 Joined Jul 31, 2003 Messages 38 Aug 20, 2003 #24 hey yeh, very very sorry, i made a typo, i meant to say checkboxes... with reference to your code Rich If Nz(Me.Check0) Then MsgBox "Test1" Else MsgBox "Test2" End If End Sub what is Nz referring to? is this a VB thing? Bella
hey yeh, very very sorry, i made a typo, i meant to say checkboxes... with reference to your code Rich If Nz(Me.Check0) Then MsgBox "Test1" Else MsgBox "Test2" End If End Sub what is Nz referring to? is this a VB thing? Bella
R Rich Guest Aug 20, 2003 #25 Null to Zero, if the checkbox has never been selected Access will generate an Invalid Use Of Null error, better safe than sorry
Null to Zero, if the checkbox has never been selected Access will generate an Invalid Use Of Null error, better safe than sorry
B bella Registered User. Local time Today, 12:17 Joined Jul 31, 2003 Messages 38 Aug 20, 2003 #26 This is my code which still doesnt work If Nz(Me.chkOldLP) Then rstLP!LP1_ID = 1 rstLP!LP2_ID = 2 rstLP!LP3_ID = 3 rstLP!LP4_ID = 4 Else: blah ?
This is my code which still doesnt work If Nz(Me.chkOldLP) Then rstLP!LP1_ID = 1 rstLP!LP2_ID = 2 rstLP!LP3_ID = 3 rstLP!LP4_ID = 4 Else: blah ?