Search results

  1. O

    Run-time error '2185'

    Run-time error '2185' You can't reference a property or method for a control unless the control has the focus. Private Sub txtName_Change() strSaveText = Me.txtName.Text End Sub The message occurs for Me.txtName.Text and only if the body of the form contains zero records. What's wrong?
  2. O

    How do I trap error: "The text is too long to be edited."

    This message occurs if I try to paste a string from the clipboard into a bound textbox control when the bound field is smaller than the data being pasted. How can I trap this error?
  3. O

    Run-time Error 2118 - You must save the current field before you run the Requery acti

    Private Sub cboQuickList_Click() . . . Forms!fAAA.cboQuickList.Requery Forms!fAAA.cboQuickList.Visible = True Forms!fAAA.cboQuickList.Dropdown End Sub I am clicking the Dropdown list of a combobox. Therefore, it is visible, enabled, and after the click has the focus. The...
Back
Top Bottom