Private Sub cboZip_AfterUpdate() If IsNull(Me.cboZip) Then strCity = "" strState = "" Else strCity = DLookup("[City]", "[tblZIPS]", "ZipID = " & cboZip & "") strState = DLookup("[State]",
Private Sub cboZip_AfterUpdate() strCity = DLookup("[City]", "[tblZIPS]", "ZipID = " & cboZip & "") strState = DLookup("[State]", "[tblZIPS]", "ZipID = " & cboZip & "")
Private Sub cboZip_AfterUpdate() strCity = DLookup("[City]", "[tblZIPS]", "[ZIP] = " & [ZIP]) strState = DLookup("[State]", "[tblZIPS]", "[ZIP] = " & [ZIP]) strZipCode = DLookup("[Zip]", "[tblZIPS]", "[ZIP] = " & [ZIP])
Leave a comment: