Hello Everyone.
I have a basic VB.NET question (again).
I found people using various ways to combine MsgboxStyles in VB.NET. For example:
All seem to work. Which one is the right way to follow ? I searched this on MSDN and reached:
But this does not seem to tell how to combine the styles.
Thank you in advance,
Parag Doke
I have a basic VB.NET question (again).
I found people using various ways to combine MsgboxStyles in VB.NET. For example:
Code:
MsgBoxStyle.Question + MsgBoxStyle.YesNo MsgBoxStyle.Question Or MsgBoxStyle.YesNo MsgBoxStyle.Question | MsgBoxStyle.YesNo
But this does not seem to tell how to combine the styles.
Thank you in advance,
Parag Doke
Comment