I have a message box and I what to know the amount of doors the cabinet has.
However, I don't know how to change the button options from yes and no
I would like the options to be "One" and "Two"
However, I don't know how to change the button options from yes and no
I would like the options to be "One" and "Two"
Code:
Door_message = MsgBox("how many doors does the cabinet have", vbYesNo)
If Door_message = 6 Then
'insert the single door to the cabinet
ElseIf Door_message = 7 Then
'insert the double door to cabinet
End If