Jump to content

Recommended Posts

Posted

right iv made a button that when pressed displays a msgbox the box displays a yes and no button, can any one tell me how i sense the return value of the yes button i believe its 6. i besicaly whant to sense if the yes button has been pressed then run a function

If $msg = $button30 Then Msgbox(68,"PUP- WARNING","blarblar blar"& @CRLF & "Do You Want To Proced?")

if Return (6) Then washdrive()

something like that but were the if return function actually dose something

Posted

thats the one but it seems that it wants the final if inside the endif but any how it seems to do the job tar

If $msg = $button30 Then $ret = MsgBox(68, "...", "...")
If $ret = 6 Then washdrive ()
If $ret = 7 Then Exit
You really don't need any EndIf for those simple lines.

I just used one to prevent the MsgBox from wrapping in the post.

[size="1"][font="Arial"].[u].[/u][/font][/size]

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...