Access 2013 VBA: Complie error: Method or data member not found

前端 未结 2 699
广开言路
广开言路 2020-12-12 07:55

I am having an issue with a button on a 2013 Access form.

High level: I am making some regulatory forms, 1 is a service Request, the other is a complaint request. A

2条回答
  •  伪装坚强ぢ
    2020-12-12 08:13

    Forms![Complaint Request Form].Form.Phone = Me.txtPhone
    

    should have been

    Forms![Complaint Request Form].Form.Phone = Me.txtPhoneNumber
    

    Sorry for wasting your time.

提交回复
热议问题