A
an
In command button I have:
Dim strMsg As String
Dim strInput As String
Dim strDir As String
strInput = InputBox(Prompt:=strMsg, ...)
strDir = "\...\...\"
Shell "C:\Program Files\...\... " & strDir & strInput,
vbMaximizedFocus
Where and what is possible to insert order for to cancel
operation without to execute the last line: Shell...
Thanks in advance
an
Dim strMsg As String
Dim strInput As String
Dim strDir As String
strInput = InputBox(Prompt:=strMsg, ...)
strDir = "\...\...\"
Shell "C:\Program Files\...\... " & strDir & strInput,
vbMaximizedFocus
Where and what is possible to insert order for to cancel
operation without to execute the last line: Shell...
Thanks in advance
an