TheMathLab
New Member
- Joined
- Jul 16, 2018
- Messages
- 7
Good morning!
I'm having an issue. I have looked through the threads and through google and done what it has told me to do, but the error is still popping up.
I have a userform (UserForm1) that has three buttons on it:
NewEntryBtn shows UserForm2 and unloads UserForm1
FinBtn shows UserForm3 and unloads UserForm1
BackdoorBtn activates Sheets("Job List") and unloads UserForm1
Each of these bring up the error. The code (below) is placed inside the UserForm1 code
My attempt at the solution (Note, I am not worrying here about loading the other userforms because that doesn't seem to be an issue):
Instead of just
I have tried
and
Neither works.
Any help?
Thanks!
I'm having an issue. I have looked through the threads and through google and done what it has told me to do, but the error is still popping up.
I have a userform (UserForm1) that has three buttons on it:
NewEntryBtn shows UserForm2 and unloads UserForm1
FinBtn shows UserForm3 and unloads UserForm1
BackdoorBtn activates Sheets("Job List") and unloads UserForm1
Each of these bring up the error. The code (below) is placed inside the UserForm1 code
My attempt at the solution (Note, I am not worrying here about loading the other userforms because that doesn't seem to be an issue):
Instead of just
Code:
Private Sub NewEntryBtn_Click()
Unload UserForm1
End Sub
I have tried
Code:
Private Sub NewEntryBtn_Click()
Set frm1 = UserForm1
Unload frm1
End Sub
and
Code:
Private Sub NewEntryBtn_Click()
Dim frm1 as UserForm
Set frm1 = UserForm1
Unload frm1
End Sub
Neither works.
Any help?
Thanks!