Sheffered
02-10-2012, 11:25 AM
Hello, I know this is basic, and I apologize for posting this again, but I really need some help. I want a text box on a form to display what is written in another text box, only if a certain check box is checked. Meaning I have a Personal Address section and a Business Address section. Yet if you click on the "Home-based business?" check box, then the information from the Personal Address section automatically fills the Business Address section.
Is this even possible?
Just for the address part I have been using the following: [/B]
Private Sub HomeBusiness_AfterUpdate()
If HomeBusiness = True Then
[HomeAddress].Value = [BusinesAddress]
End If
End Sub
Is this even possible?
Just for the address part I have been using the following: [/B]
Private Sub HomeBusiness_AfterUpdate()
If HomeBusiness = True Then
[HomeAddress].Value = [BusinesAddress]
End If
End Sub