Forum Discussion

12Jasper34's avatar
12Jasper34
Copper Contributor
Sep 15, 2022
Solved

Forms and Subforms syntax

I have a Form with a sub form.  For ease of this explanation, I will call the form (Form1) and the subform (Subform1) On Subform1 I have 3 field controls, A, B, C  I will use a Combo Box tied to a ...
  • Harun24HR's avatar
    Sep 15, 2022

    12Jasper34 If your combobox is in Form1 then you need to mention Form1 name and Subform1 name. If combobox is in subform1 then just use "Me" like

    Me.ControlB=Me.ComboBox.Column(1)
    Me.ControlC=Me.ComboBox.Column(2)

Resources