Message 1 of 13
iLogic: inputbox cancel

Not applicable
06-22-2015
02:14 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi,
I'm trying to create a user input, by using the inputbox. But I also want to be able to cancel the operation. I tried writing it like this but no succes! What do i need to change in order to work?
This rule cancels always.
uInput = InputBox("Default entry", "Title", sPrefix) If vbCancel Then MsgBox("cancel") Return End If '*** Rest of the rule***'