D
DaveB
On my form I have a field for BillingName, one for
LastName, and one for FirstName. If the Billing name is
not a business, then I want to use the LastName,
FirstName. I'd like to have it be automatically entered
into the field if I haven't already entered a business
name.
I asked about how to do this earlier in a different
field, but it doesn't do anything at all. Below is the VB.
Private Sub BillingAddress_AfterUpdate()
txtBillingAddress
If IsNull(Me.txtBillingAddress) Then
Me.txtBillingAddress = Me.txtJobAddress
End If
End Sub
Please tell me how to make it work.
LastName, and one for FirstName. If the Billing name is
not a business, then I want to use the LastName,
FirstName. I'd like to have it be automatically entered
into the field if I haven't already entered a business
name.
I asked about how to do this earlier in a different
field, but it doesn't do anything at all. Below is the VB.
Private Sub BillingAddress_AfterUpdate()
txtBillingAddress
If IsNull(Me.txtBillingAddress) Then
Me.txtBillingAddress = Me.txtJobAddress
End If
End Sub
Please tell me how to make it work.