Access 2003
I have two forms.
Main Form Name: Form_Main
Sub Form Name : Sub_Form_Error_Record
After a button is presses, it delete the underlying table in the subform. Now I just need to update the subform so that it will display the data instead displaying the
text #Deleted.
The code below result in an error message
Run-time error '438'. Object doesn 't support this
property or method. The yellow highlight is on the code
Forms!Form_Main!Sub_Form_Error_Record.Form!
Record_Number.SetFocus = True
/////////////////////////////////////////////////////
Private Sub Refresh_The_Form
Forms!Form_Main!Sub_Form_Error_Record.Form!
Record_Number.SetFocus = True
SendKeys "+{F9}", True
End Sub
I have two forms.
Main Form Name: Form_Main
Sub Form Name : Sub_Form_Error_Record
After a button is presses, it delete the underlying table in the subform. Now I just need to update the subform so that it will display the data instead displaying the
text #Deleted.
The code below result in an error message
Run-time error '438'. Object doesn 't support this
property or method. The yellow highlight is on the code
Forms!Form_Main!Sub_Form_Error_Record.Form!
Record_Number.SetFocus = True
/////////////////////////////////////////////////////
Private Sub Refresh_The_Form
Forms!Form_Main!Sub_Form_Error_Record.Form!
Record_Number.SetFocus = True
SendKeys "+{F9}", True
End Sub