i need to create a message box in CATScript / VBscript and it should have two buttons with names " Next " and "Before " or i could use ">|" and " |< " . How do i create a custom Msgbox . This is the code i am trying to execute according to it .
P.s : What do i replace in the position of VbYesNo in the example
result = Msgbox ( " Crank Position " , vbYesNo , "blah blah)
Select case result
Case vbYes
crankangle++
Case VbNo
crankangle--
End Select
thanks in advance