sassriverrat
Well-known Member
- Joined
- Oct 4, 2018
- Messages
- 655
So I've got some simple error coding
Anyway, I'd like to have a button in userform17 that would show the user exactly where the problem was (like a debug I guess) without stopping the code (assuming because the user doesn't know how to handle the vba so really-
I'd like a button that will show the problem and a second button that will take a screenshot of the line of error without showing the vba window- basically so a screenshot can be sent to me (or someone that's fixing the code) without messing up the user...
thanks
i'm not sure what a debug.print looks like
Code:
On Error GoTo Help
Exit Sub
Help: resp = MsgBox "Sorry for the error! Would you like to see the help menu?", vbyesno
if resp = vbyes then Call userform17
if resp = vbno then exit sub
End if
End Sub
Anyway, I'd like to have a button in userform17 that would show the user exactly where the problem was (like a debug I guess) without stopping the code (assuming because the user doesn't know how to handle the vba so really-
I'd like a button that will show the problem and a second button that will take a screenshot of the line of error without showing the vba window- basically so a screenshot can be sent to me (or someone that's fixing the code) without messing up the user...
thanks
i'm not sure what a debug.print looks like