object reference question

B

bstandke

I have the following code:

Private Sub cmdLoadOLE_Click()
Dim myform As Form
On Error Resume Next
Me.OLEFile.Action = acOLEInsertObjDlg
Err.Clear
On Error GoTo 0
'dynamicform is a public string variable passed through openargs
Set myform = Forms(dynamicForm).Form
Forms!myform![Form_frm Master Attachments].Form.Requery
Forms!myform.SetFocus
Forms!myform.mytabControl.Pages("Attachments").SetFocus

DoCmd.Close

'DoCmd.RunCommand acCmdRecordsGoToNew
End Sub

and it returns an error can't find myform ???

Thanks in advance
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top