• grovelli-262555 (4/9/2014)


    "the Ready property of the parent is set to True (through its m_booReady member variable)."

    so in the main form Open event you have

    m_booReady = True

    but then what triggers the main form's Ready property?

    Or is m_booReady = True enough to trigger it?

    The member variable m_booReady is set to True in the event handler of the Form_Open event of the parent form. This event can only occurs when both subforms have been initialized (i.e. when their Form_Open --> Form_Load --> Form_Current sequence of events is completed).

    grovelli-262555 (4/9/2014)


    Also what is the content of the RecordSource property for SF1?

    The RecordSource for SF1 is SELECT * FROM Tbl_OrderLines;

    Have a nice day!