I recently created an executable in VB6 that takes inputted information from the user and automatically sends a formatted email to a distribution list. I want to place a button on the outlook toolbar that when pressed will run the executable.
I was told that this could be accomplished by a...
You can use the isnumeric function similar to the following example
If isnumeric(textbox.text) then
'action if numeric
Else
msgbox "Must enter a numeric value"
textbox.setfocus
End If
I hope this helps you out