hi, :wave:
I've confusion in working with eight standard Dialog Boxes.
I want to understand them all. Any link for it's tutorial will be appreciated.
Thanks in advance!!
Printable View
hi, :wave:
I've confusion in working with eight standard Dialog Boxes.
I want to understand them all. Any link for it's tutorial will be appreciated.
Thanks in advance!!
Perhaps you should start by reading the documentation for the appropriate classes.
You mean the MessageBox ? :confused:
Most of the legacy VB6 functions and subs are available in VB.Net too. But I think it will be good to avoid using them. Follow this step:
For showing MessageBox:Code:Project --> WindowsApplication1 Properties --> References --> Untick Microsoft.VisualBasic
Another eg:Code:MessageBox.Show("Hi and welcome to VB2010")
Good luck..:thumb:Code:MessageBox.Show("Hi and welcome to VB2010", "My Message", MessageBoxButtons.OKCancel)
No, i mean the eight standard dialog boxes i.e OpenFile, SaveFile, Print, printPreview and others..
Sorry for that.
This might help you: http://www.startvbdotnet.com/controls/dialog.aspx :wave:
That's exactly what i wanted..
Thanks dear :)