|
Theanswer i got in this forum has helped me, in my code, i havean MsgBox(), we havealready used two options in the place of MsgBoxStyle parameteras per our client requirement, and then we got one more requirement from our client, for that we have to set the focus of the message box on the "No" button, i have done with the help of MSDN as like below. It is working well.
MsgBox("Hold Order for This Customer. Do You want to continue?", MsgBoxStyle.YesNo + MsgBoxStyle.Question + MsgBoxStyle.DefaultButton2, "Confirmation")
The above code is working fine.
Thanks MSDN forums....
|