Hi All,
I'm very new to Access, and I'm building a Form.
On the form I have a Textbox to display the current period. I have a single record table which has one field for for the Current financial period of the Year, and one field for the current financial year.
tbl_Current_Period
When I open the form, I want to get the Current Period from the Table, and display it in the Textbox.
And I am trying the following:
But I get the error message "Object Required"
Any suggestions please.
I'm very new to Access, and I'm building a Form.
On the form I have a Textbox to display the current period. I have a single record table which has one field for for the Current financial period of the Year, and one field for the current financial year.
tbl_Current_Period
When I open the form, I want to get the Current Period from the Table, and display it in the Textbox.
And I am trying the following:
Code:
Private Sub Form_Load()
Form1.Text18.Value = tbl_Current_Period!Period
End Sub
But I get the error message "Object Required"
Any suggestions please.