Well, I'm working on a different project and am having the same problem.
The Initialize starts out like this:
Private Sub UserForm_Initialize()
txtJobNumber.Value = ""
txtCustomer.Value = ""
txtProject.Value = ""
txtDeliverTo.Value = ""
But I get an error pointing to this Module. It highlights UserForm1.show
Sub OpenUserForm1()
UserForm1.Show
End Sub
The name of the form is UserForm1.
It works in the other project!!
Does it matter what order the Subs are in? Cause that's the only difference I can find.
Thanks!
Bookmarks