Private Sub cl_DblClick(Cancel As Integer)
Dim Ctlname As String
Ctlname = Screen.ActiveControl.Name
DoCmd.OpenForm "myCalc", , , , , , Me.Form.Name & "," & Ctlname
End Sub
Private Sub Form_Load()
End Sub
Private Sub xk_DblClick(Cancel As Integer)
Dim Ctlname As String
Ctlname = Screen.ActiveControl.Name
DoCmd.OpenForm "myCalc", , , , , , Me.Form.Name & "," & Ctlname
End Sub
发现二义性的名称:Form_Load
大哥,哪里出问题了,请帮我看看,