Copy
Move
Cancel
I am using code similar to this:
Response = MsgBox("Please Choose...", vbYesNoCancel + vbQuestion,
"Question.....")
Select Case Response
Case 6 'User has clicked Yes
'*** Your Code Here ***
Case 7 'User has clicked No
'*** Your Code Here ***
Case 2 'User has clicked Cancel
'*** Your Code Here ***
End Select
Is what I am looking for possible?
Thank you.
Brian D
*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Ray at work
"Brian D'Altilio" <bdal...@yahoo.com> wrote in message
news:e4cXFheX...@TK2MSFTNGP09.phx.gbl...
Although, you can "fake" it by creating an ie window **wink**
Mythran
How would I go about doing that? I am trying to put it on a CD and I
don't want to ask if it should run from it current location like the
code below would when you click the button. I just want it to run.
<HTML>
<H1><TITLE>SomeTitle</TITLE></H1>
<BODY>
<A HREF="c:\winnt\system32\calc.exe"> Use the calculator </A>
</BODY>
</HTML>
thanks!
Brian
Watch for the wrap above.
The posted link should help you with the DHTML stuff for making variables public
(or input elements hidden) then you can access them from the script :)
Mythran