473,385 Members | 1,856 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,385 software developers and data experts.

ToolTip Help for User Defined Methods

Hi Team,
I am making a Datalayer with lot of methods. I want to give "ToopTip" help
of each parametrs to the users of these methods and classes.

What should I do to achieve above in C#.

Thanks in advance.

Cheeeeeeeeeers !!!
Nov 15 '05 #1
4 1255
Use the XML comments which are generated in C# when you enter "///" before
the methods and properties. Then set the project to build the XML
documentation file by right clicking the project and specifying the output
directory and filename for the XML doc file. Finally, distribute this XML
file with your DLL and the intellisense information will be displayed when
your component is used at design time.

--
Bob Powell [MVP]
C#, System.Drawing

Answer those GDI+ questions with the GDI+ FAQ
http://www.bobpowell.net/gdiplus_faq.htm

Read my Blog at http://bobpowelldotnet.blogspot.com

"Vinod I" <Vi****@PMAM.com> wrote in message
news:u%****************@tk2msftngp13.phx.gbl...
Hi Team,
I am making a Datalayer with lot of methods. I want to give "ToopTip" help of each parametrs to the users of these methods and classes.

What should I do to achieve above in C#.

Thanks in advance.

Cheeeeeeeeeers !!!

Nov 15 '05 #2
Hi,

Thanks Bob, for that bit of knowledge.
I tryedthe stuff. But its not working as I may be not using it properly.
If u can explain bit more that will be helpful. Also, please mention the
link where i can look into.

Thanks
"Bob Powell [MVP]" <bob@_spamkiller_bobpowell.net> wrote in message
news:uK**************@TK2MSFTNGP09.phx.gbl...
Use the XML comments which are generated in C# when you enter "///" before
the methods and properties. Then set the project to build the XML
documentation file by right clicking the project and specifying the output
directory and filename for the XML doc file. Finally, distribute this XML
file with your DLL and the intellisense information will be displayed when
your component is used at design time.

--
Bob Powell [MVP]
C#, System.Drawing

Answer those GDI+ questions with the GDI+ FAQ
http://www.bobpowell.net/gdiplus_faq.htm

Read my Blog at http://bobpowelldotnet.blogspot.com

"Vinod I" <Vi****@PMAM.com> wrote in message
news:u%****************@tk2msftngp13.phx.gbl...
Hi Team,
I am making a Datalayer with lot of methods. I want to give "ToopTip"

help
of each parametrs to the users of these methods and classes.

What should I do to achieve above in C#.

Thanks in advance.

Cheeeeeeeeeers !!!


Nov 15 '05 #3
Take a look in the MSDN help for the /doc command line switch for the C#
compiler. (entitled "/doc Process Documentation Commands") it explains how
to use the generated XML file and how to have Visual Studio generate the
file for you.

You may also wish to read up on XML Documentation which is also available
from a search of MSDN

--
Bob Powell [MVP]
C#, System.Drawing

Answer those GDI+ questions with the GDI+ FAQ
http://www.bobpowell.net/gdiplus_faq.htm

Read my Blog at http://bobpowelldotnet.blogspot.com

"Vinod I" <Vi****@PMAM.com> wrote in message
news:e2**************@tk2msftngp13.phx.gbl...
Hi,

Thanks Bob, for that bit of knowledge.
I tryedthe stuff. But its not working as I may be not using it properly.
If u can explain bit more that will be helpful. Also, please mention the
link where i can look into.

Thanks
"Bob Powell [MVP]" <bob@_spamkiller_bobpowell.net> wrote in message
news:uK**************@TK2MSFTNGP09.phx.gbl...
Use the XML comments which are generated in C# when you enter "///" before the methods and properties. Then set the project to build the XML
documentation file by right clicking the project and specifying the output directory and filename for the XML doc file. Finally, distribute this XML file with your DLL and the intellisense information will be displayed when your component is used at design time.

--
Bob Powell [MVP]
C#, System.Drawing

Answer those GDI+ questions with the GDI+ FAQ
http://www.bobpowell.net/gdiplus_faq.htm

Read my Blog at http://bobpowelldotnet.blogspot.com

"Vinod I" <Vi****@PMAM.com> wrote in message
news:u%****************@tk2msftngp13.phx.gbl...
Hi Team,
I am making a Datalayer with lot of methods. I want to give "ToopTip"

help
of each parametrs to the users of these methods and classes.

What should I do to achieve above in C#.

Thanks in advance.

Cheeeeeeeeeers !!!



Nov 15 '05 #4
Thanks Bob. Its working now........

"Bob Powell [MVP]" <bob@_spamkiller_bobpowell.net> wrote in message
news:ep**************@TK2MSFTNGP09.phx.gbl...
Take a look in the MSDN help for the /doc command line switch for the C#
compiler. (entitled "/doc Process Documentation Commands") it explains how
to use the generated XML file and how to have Visual Studio generate the
file for you.

You may also wish to read up on XML Documentation which is also available
from a search of MSDN

--
Bob Powell [MVP]
C#, System.Drawing

Answer those GDI+ questions with the GDI+ FAQ
http://www.bobpowell.net/gdiplus_faq.htm

Read my Blog at http://bobpowelldotnet.blogspot.com

"Vinod I" <Vi****@PMAM.com> wrote in message
news:e2**************@tk2msftngp13.phx.gbl...
Hi,

Thanks Bob, for that bit of knowledge.
I tryedthe stuff. But its not working as I may be not using it properly.
If u can explain bit more that will be helpful. Also, please mention the link where i can look into.

Thanks
"Bob Powell [MVP]" <bob@_spamkiller_bobpowell.net> wrote in message
news:uK**************@TK2MSFTNGP09.phx.gbl...
Use the XML comments which are generated in C# when you enter "///"

before the methods and properties. Then set the project to build the XML
documentation file by right clicking the project and specifying the output directory and filename for the XML doc file. Finally, distribute this XML file with your DLL and the intellisense information will be displayed when your component is used at design time.

--
Bob Powell [MVP]
C#, System.Drawing

Answer those GDI+ questions with the GDI+ FAQ
http://www.bobpowell.net/gdiplus_faq.htm

Read my Blog at http://bobpowelldotnet.blogspot.com

"Vinod I" <Vi****@PMAM.com> wrote in message
news:u%****************@tk2msftngp13.phx.gbl...
> Hi Team,
>
>
> I am making a Datalayer with lot of methods. I want to give "ToopTip" help
> of each parametrs to the users of these methods and classes.
>
> What should I do to achieve above in C#.
>
> Thanks in advance.
>
> Cheeeeeeeeeers !!!
>
>



Nov 15 '05 #5

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

Similar topics

0
by: Yves Royer | last post by:
Hi, I'm currently writing an application (in VS 2005 bèta 2) and made some own user controls. In each user control I added a ToolTip object so i can set some tooltips on checkboxes etc. What...
0
by: Yves Royer | last post by:
Hi, My first post didn't show up so here's a second try. I'm currently writing an application (in VS 2005 bèta 2) and made some own user controls. In each user control I added a ToolTip object...
0
by: Steve R | last post by:
I've built a composite web custom control with a lot of child controls. I assigned ToolTip values to some of these controls. The ToolTip pop-ups were working fine until I monkeyed with the order...
7
by: | last post by:
Is there a way to change the "fadeout" of a tooltip? In other words, it'll display for about 10 seconds which may or may not be long enough for a user to read the tooltip. I'd like to...
3
by: S?ren Olesen | last post by:
Hi If you in Visual Studio (VB) write String.E then you'll get a list of possible methods and for each method I get a small ToolTip describing the method.... How do I add information to my...
5
by: Charles Law | last post by:
Although I can find few reports of the problem, it seems plain that tooltips just don't work (in VB.NET at any rate). I have an MDI child form with a TrackBar control on it. I have a private...
5
by: Pavan | last post by:
My goal is to accomplish the tooltip functionality for all the neodes in a tree view and i have the following three Events in my C# application. Name of my TreeView Control (AITreeView) 1)...
11
by: Kim | last post by:
Using the code below am I able to display/hide a tooltip without any problems, however once the tooltip is displayed its position is fixed (based on where the mouse first hovered onto the object)...
8
mikek12004
by: mikek12004 | last post by:
1) Script Title: Rich HTML Balloon Tooltip 2) Script URL :http://www.dynamicdrive.com/dynamicindex5/balloontooltip.htm 3) Problem Description: See this page General Music for links you can...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
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
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
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,...

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.