Search results

  1. O

    Update Form Control Attributes When Updating Table Field

    Hi, I was wondering how one can update a field's attributes within a table, and upon saving those changes, have the attributes update automatically within a form containing a control for that field. Currently, whenever I update an attribute for a field within a table, I then have to go to the...
  2. O

    Open Form from SubForm Using Multiple Criteria

    Below is the code that I am currently using within the DoubleClick Event of Field_A within Form_A: Private Sub Field_A_DblClick(Cancel As Integer) Dim setLinkCriteria_1 As String Dim setLinkCriteria_2 As String setLinkCriteria_1 = Me.Field_A setLinkCriteria_2 =...
  3. O

    Open Form from SubForm Using Multiple Criteria

    Hello All, My inquiry is regarding passing multiple parameters in order to open a specific record within Form_B, once a DoubleClick Event has occurred within a specific field of a record within Form_A. Below is some information about my setup: SubForm Name: Form_A Form_A Field Names: Field_A...
  4. O

    Open New Form from Form

    Thanks for the responses everyone. Actually, oddly enough, today when I went back to working on the form it did not produce the error that I had been experiencing. I did not change any of the code, and I can't figure out what happened that could have eliminated the problem. All's well that ends...
  5. O

    Open New Form from Form

    There is nothing in any of those fields that you mentioned. I can't really understand what other possibilities could be causing this. Again, once I've input data into a subform on the main form, an AfterUpdate() event for the updated field in the subform has the code that I've included above...
  6. O

    Open New Form from Form

    After I've entered in a value, the new form is opened, but it is then continuously opened again and again. As a result, when data is entered into the first field of the opened form, it disappears immediately and a new blank form is shown. Also, the mouse cursor seems to blink incessantly from...
  7. O

    Open New Form from Form

    Hello, I have a simple question. How can I open a new form (called Incentive Type 1) based on a value being input within a subform without the OpenForm command running continuously? Below is the code that I have for AfterUpdate() for a Control called Incentive Scenario Type: Sub Private...
Back
Top Bottom