Search results

  1. L

    Form keeps opening as new record instead of current record

    All of the fields come from a table, so it is bound. The OnLoad is Private Sub Form_Load() If (Me.Internal_C = True) Then Me.CE_label.Visible = False Me.CI_label.Visible = True Me.Type = "Internal" ElseIf (Me.Internal_C = False) Then Me.CE_label.Visible = True Me.CI_label.Visible = False...
  2. L

    Form keeps opening as new record instead of current record

    I set it to no. I do have code for On Load, but all it does is set the visibility of some labels and reads check boxes to set text boxes.
  3. L

    Form keeps opening as new record instead of current record

    I have a a few forms that open into another called CAPA. Whether I use a macro or VBA for a button to open the CAPA form, it opens as a new record instead of the one I want. I have an ID that I am using for the where condition. Even if I open the from from the objects panel on the left, it opens...
Back
Top Bottom