msgbox

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

hi,
i am new to vb.net....

i want to call a messagebox wich hast a "YES" and "NO" button.
but if the user is pressing non of them,
the message box should automatically press "NO" after n seconds and close.

kind regards
 
You can´t do that with MsgBox or MessageBox.Show, you need a form with a
Timer control and implement call the Close method with the timer ticks.
--

Best regards,

Carlos J. Quintero

MZ-Tools: Productivity add-ins for Visual Studio .NET, VB6, VB5 and VBA
You can code, design and document much faster.
Free resources for add-in developers:
http://www.mztools.com
 
Back
Top