Search results

  1. F

    referring to form by using its index number

    Using form index in references With regards to the syntax how to use the form index in references, these are all possible options, including using the index: Syntax: Forms!formname Example: Forms!OrderForm Syntax: Forms![form name] Example: Forms![Order Form] Syntax: Forms("formname")...
  2. F

    referring to form by using its index number

    Try this... I just came across your topic because I was looking for something similar. Not sure if you found a solution yet but I do the following to determine the form index: For FormIndex = 0 To Forms.Count - 1 If Forms(FormIndex).Hwnd = Me.Hwnd Then MsgBox ("My FormIndex = " &...
Back
Top Bottom