473,396 Members | 1,996 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

Hot toolbar

hey guys
I got trouble implementing hot toolbar like intertnet explorer in my
win forms. Could someone please give me ideas...

thanks

Jul 26 '06 #1
6 1630
I think you can find your answer from MS QuickStart for Winform section
or CodeProject site.
Good luck.

url1: http://samples.gotdotnet.com/quickstart/winforms/
url2: http://www.codeproject.com

Sincerely,
Simida

mo*******@gmail.com wrote:
hey guys
I got trouble implementing hot toolbar like intertnet explorer in my
win forms. Could someone please give me ideas...

thanks
Jul 26 '06 #2
Hi,
What kind of problems?
--
--
Ignacio Machin,
ignacio.machin AT dot.state.fl.us
Florida Department Of Transportation

<mo*******@gmail.comwrote in message
news:11**********************@m73g2000cwd.googlegr oups.com...
hey guys
I got trouble implementing hot toolbar like intertnet explorer in my
win forms. Could someone please give me ideas...

thanks

Jul 26 '06 #3
I need my button to change the image to a hot image when I take the
mouse over it (e.g. internet explorer.. ). I tried using mousehover but
doesn't work properly. I need ideas to implement it... Microsoft has
done that and there would be a way to do it in c#.. help help
thanks
Ignacio Machin ( .NET/ C# MVP ) wrote:
Hi,
What kind of problems?
--
--
Ignacio Machin,
ignacio.machin AT dot.state.fl.us
Florida Department Of Transportation

<mo*******@gmail.comwrote in message
news:11**********************@m73g2000cwd.googlegr oups.com...
hey guys
I got trouble implementing hot toolbar like intertnet explorer in my
win forms. Could someone please give me ideas...

thanks
Jul 27 '06 #4
Hi,

How it does not work properly? Can you post some code?

Have search some third party tool? I bet than in codeproject you will find
code for this (or for something similar)
--
--
Ignacio Machin,
ignacio.machin AT dot.state.fl.us
Florida Department Of Transportation
<mo*******@gmail.comwrote in message
news:11**********************@p79g2000cwp.googlegr oups.com...
>I need my button to change the image to a hot image when I take the
mouse over it (e.g. internet explorer.. ). I tried using mousehover but
doesn't work properly. I need ideas to implement it... Microsoft has
done that and there would be a way to do it in c#.. help help
thanks
Ignacio Machin ( .NET/ C# MVP ) wrote:
>Hi,
What kind of problems?
--
--
Ignacio Machin,
ignacio.machin AT dot.state.fl.us
Florida Department Of Transportation

<mo*******@gmail.comwrote in message
news:11**********************@m73g2000cwd.googleg roups.com...
hey guys
I got trouble implementing hot toolbar like intertnet explorer in my
win forms. Could someone please give me ideas...

thanks

Jul 27 '06 #5
i used simple mousehover. and when this event happens then i change the
imagelist of the whole tool bar... should not b this... and if i keep
the button at the same place then bigger problem... as the mouse hover
keeps on changing the image from hot to regular and vice versa..
code:
private void toolbarMain_MouseHover(object sender, System.EventArgs e)
{
if (toolbarMain.ImageList != imglstTbMainHot)
{
toolbarMain.ImageList = imglstTbMainHot;
}
else
{
toolbarMain.ImageList = imglstTBMain;
}
}

u can see in the code i am just switching the image list... not a good
way atall... there would b something done and i don't wana reinvent the
wheel. :)
Ignacio Machin ( .NET/ C# MVP ) wrote:
Hi,

How it does not work properly? Can you post some code?

Have search some third party tool? I bet than in codeproject you will find
code for this (or for something similar)
--
--
Ignacio Machin,
ignacio.machin AT dot.state.fl.us
Florida Department Of Transportation
<mo*******@gmail.comwrote in message
news:11**********************@p79g2000cwp.googlegr oups.com...
I need my button to change the image to a hot image when I take the
mouse over it (e.g. internet explorer.. ). I tried using mousehover but
doesn't work properly. I need ideas to implement it... Microsoft has
done that and there would be a way to do it in c#.. help help
thanks
Ignacio Machin ( .NET/ C# MVP ) wrote:
Hi,
What kind of problems?
--
--
Ignacio Machin,
ignacio.machin AT dot.state.fl.us
Florida Department Of Transportation

<mo*******@gmail.comwrote in message
news:11**********************@m73g2000cwd.googlegr oups.com...
hey guys
I got trouble implementing hot toolbar like intertnet explorer in my
win forms. Could someone please give me ideas...

thanks
Jul 30 '06 #6
not solved as yet !!! :(

mo*******@gmail.com wrote:
i used simple mousehover. and when this event happens then i change the
imagelist of the whole tool bar... should not b this... and if i keep
the button at the same place then bigger problem... as the mouse hover
keeps on changing the image from hot to regular and vice versa..
code:
private void toolbarMain_MouseHover(object sender, System.EventArgs e)
{
if (toolbarMain.ImageList != imglstTbMainHot)
{
toolbarMain.ImageList = imglstTbMainHot;
}
else
{
toolbarMain.ImageList = imglstTBMain;
}
}

u can see in the code i am just switching the image list... not a good
way atall... there would b something done and i don't wana reinvent the
wheel. :)
Ignacio Machin ( .NET/ C# MVP ) wrote:
Hi,

How it does not work properly? Can you post some code?

Have search some third party tool? I bet than in codeproject you will find
code for this (or for something similar)
--
--
Ignacio Machin,
ignacio.machin AT dot.state.fl.us
Florida Department Of Transportation
<mo*******@gmail.comwrote in message
news:11**********************@p79g2000cwp.googlegr oups.com...
>I need my button to change the image to a hot image when I take the
mouse over it (e.g. internet explorer.. ). I tried using mousehover but
doesn't work properly. I need ideas to implement it... Microsoft has
done that and there would be a way to do it in c#.. help help
thanks
>
>
Ignacio Machin ( .NET/ C# MVP ) wrote:
>
>Hi,
>>
>>
>What kind of problems?
>>
>>
>--
>--
>Ignacio Machin,
>ignacio.machin AT dot.state.fl.us
>Florida Department Of Transportation
>>
><mo*******@gmail.comwrote in message
>news:11**********************@m73g2000cwd.googleg roups.com...
hey guys
I got trouble implementing hot toolbar like intertnet explorer in my
win forms. Could someone please give me ideas...
>
thanks
>
>
Aug 3 '06 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

15
by: Code Monkee | last post by:
How can the toolbar and menubar be hidden in IE? When opening the window via javascript I can specify 'toolbar=no,menubar=no', which works fine. However if the window already exists how can I...
102
by: me | last post by:
How do I prevent the save/print/email/mypictures toolbar from popping up when IE users place their cursor over photos at my website? Thank you in advance for your help. Signed, me
11
by: N. Graves | last post by:
I have checked the "Alignment and Sizing" toolbar but when I want to use in on aligning several form object the toolbar buttons stay grayed out. What am I missing. Thanks! N. Graves
0
by: Lauren Quantrell | last post by:
I use the following code to create text edit fields and command buttons in my toolbars: Function CreateToolbarObject(myObjectType as integer) Dim newObject Select Case myObjectType Case 1...
4
by: Jason Tabert | last post by:
Is there a way to create a custom IE toolbar with C# (or anything else in ..NET for that matter)? I have been looking all day and have had no luck finding a good place to start. I need to make...
6
by: Juan Pedro Gonzalez | last post by:
I wanted to add a Combobox to a toolbar... Kind of the look you get on VisualStudio's toolbar. I've been able to find some VB 6 samples, but the placeholder option is no longer available for...
1
by: Alfredo Barrientos | last post by:
Hi, I have a little trouble trying to assign a Toolbar control to another toolbar variable control. I am getting my forms controls with this: for (int j = 0; j <= frmChild.Controls.Count -...
4
by: Gerhard | last post by:
I have an MS Access app with multiple forms. One of the forms has a Toolbar (MsComctlLib.Toolbar) and it works as advertised. I handle the buttons in the Toolbar1_ButtonClick event. I would like...
3
by: Undergrid | last post by:
Hi All, I've got a few toolbars in my application hosted in a ToolStripContainer. I have found a problem whereby the location of a toolbar is not restored when doing a LoadSettings if the...
6
by: =?Utf-8?B?L2Rldi9udWxs?= | last post by:
Hello, i am using visual studio 2003 enterprise architect version. I am making apps for the .Net framework 1.1. While testing an interface, i discovered something strange. In this application...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.