tags:

views:

29

answers:

1

i am getting OBJECT REQUIRED on error on this

anyone know whats going on ?

Private Sub CommandButton1_Click()
DoCmd.SetWarnings False
Module1.TransferShipper
End Sub
+1  A: 

DoCmd does not exist in the Word object model.

If you provide more context we might find other options for what you are trying to do.

0xA3
i will mark this correct thank sso much
I__