Hi -

Is it possible for form B to read form A's BindingSource current position?

For example, if "x" is an integer variable on Form B:

Dim frm as Form
frm = FormA

x = frm.BindingSource.Current("RecordID")
I can read other Form A properties from Form B (e.g., the Form A's ActiveControl.Name).

Appreciate anyone's input on this question.