|
-
Oct 5th, 2006, 10:22 AM
#1
Thread Starter
Lively Member
Add '?' button to form top.
How can I add a question mark (?) button next to the minimize, maximize and close buttons at the top of a form?
Thanks
Last edited by Xcoder : 09-10-2001 at 12:45 AM.
-
Oct 5th, 2006, 10:32 AM
#2
Re: Add '?' button to form top.
 Originally Posted by Xcoder
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.html
-
Oct 5th, 2006, 11:11 AM
#3
Re: Add '?' button to form top.
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.
-
Oct 5th, 2006, 11:16 AM
#4
Thread Starter
Lively Member
Re: Add '?' button to form top.
 Originally Posted by stanav
Thanks stanav, but Im planning on using this:
http://www.codeproject.com/cs/miscct...loonwindow.asp with the question mark button.
Last edited by Xcoder : 09-10-2001 at 12:45 AM.
-
Oct 5th, 2006, 11:18 AM
#5
Thread Starter
Lively Member
Re: Add '?' button to form top.
 Originally Posted by kleinma
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, will look into that.
Last edited by Xcoder : 09-10-2001 at 12:45 AM.
-
Oct 5th, 2006, 11:56 AM
#6
Re: Add '?' button to form top.
 Originally Posted by Xcoder
How can I add a question mark (?) button next to the minimize, maximize and close buttons at the top of a form?
Thanks
Hi,
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
-
Oct 27th, 2006, 10:36 AM
#7
Lively Member
Re: Add '?' button to form top.
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
-
Oct 27th, 2006, 10:43 AM
#8
Re: Add '?' button to form top.
 Originally Posted by Dean_Reedy
Hi,
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
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|