How can I add a question mark (?) button next to the minimize, maximize and close buttons at the top of a form?
Thanks
Printable View
How can I add a question mark (?) button next to the minimize, maximize and close buttons at the top of a form?
Thanks
This might help: http://www.helpscribble.com/dotnet.htmlQuote:
Originally Posted by Xcoder
Its built into .NET forms.
Set the forms .HelpButton property to true, but you also need to set the maximized and minimized buttons to false in order to get the help button to show up.
If that is not an option, you will have to look to some API for adding a button to the title bar.
Thanks stanav, but Im planning on using this:Quote:
Originally Posted by stanav
http://www.codeproject.com/cs/miscct...loonwindow.asp with the question mark button.
Thanks, will look into that.Quote:
Originally Posted by kleinma
Hi,Quote:
Originally Posted by Xcoder
You can do just this;
VB Code:
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load MaximizeBox = False MinimizeBox = False HelpButton = True End Sub
Wkr,
sparrow1
I use a grid from a company that does what you are talking about, it is a ActiveX control though and cost money.
http://www.10tec.com/home/Products/A...onX/index.aspx
Hi,Quote:
Originally Posted by Dean_Reedy
I found a link about ActiveX controls, perhaps it could be useful;
http://msdn.microsoft.com/library/de...node_entry.asp
Hope it helps,
sparrow1