ms-access-forms

Form reference technique in Access VBA

ぐ巨炮叔叔 提交于 2020-05-17 06:15:35
问题 As per a suggestion in the comments from here, I am starting a thread to learn the reference technique for passing values and variables from form to form, also discussed here and here. As a side note, to the best of my knowledge, it's not the technique referred to here and here. Those previous questions demonstrated that the following code in the called form, sets up this technique. Dim prevForm As Form Private Sub Form_Load() Set prevForm = Screen.ActiveForm End Sub For an Access beginner