In the AfterUpdate event of the checkbox:
Sub chkMyCheckBox_AfterUpdate()
If Me.chkMyCheckBox = True Then
Me.txtShipToAddress = Me.txtBillToAddress
Me.txtShipToCity = Me.txtBillToCity
Me.txtShipToState = Me.txtBillToState
Me.txtShipToZip = Me.txtBillToZip
Else
Me.txtShipToAddress = ""
Me.txtShipToCity = ""
Me.txtShipToState = ""
Me.txtShipToZip = ""
End If
End Sub
--
Arvin Meyer, MCP, MVP
http://www.datastrat.com
http://www.mvps.org/access
http://www.accessmvp.com
"jjjimmyjam" <(E-Mail Removed)> wrote in message
news:36091671-4B01-47E2-A6F4-(E-Mail Removed)...
>I have a form for customer information. The table has billing address and
> shipping address information. What steps do I take with a check box if
> checked to populate the shipping address information with billing address
> information.