Click here to Skip to main content
16,005,491 members
Home / Discussions / C#
   

C#

 
Questionread html file in a string Pin
G.K.M.28-Oct-07 20:52
G.K.M.28-Oct-07 20:52 
AnswerRe: read html file in a string Pin
Giorgi Dalakishvili28-Oct-07 21:02
mentorGiorgi Dalakishvili28-Oct-07 21:02 
AnswerRe: read html file in a string Pin
Abhijit Jana28-Oct-07 22:29
professionalAbhijit Jana28-Oct-07 22:29 
QuestionParser Error Message: Unrecognized configuration section 'connectionStrings' Pin
bijeshputhalath28-Oct-07 20:45
bijeshputhalath28-Oct-07 20:45 
QuestionHow to add tooltip with property ? Pin
Abhijit Jana28-Oct-07 19:46
professionalAbhijit Jana28-Oct-07 19:46 
AnswerRe: How to add tooltip with property ? Pin
N a v a n e e t h28-Oct-07 19:49
N a v a n e e t h28-Oct-07 19:49 
GeneralRe: How to add tooltip with property ? Pin
Abhijit Jana28-Oct-07 20:03
professionalAbhijit Jana28-Oct-07 20:03 
GeneralRe: How to add tooltip with property ? Pin
N a v a n e e t h28-Oct-07 20:33
N a v a n e e t h28-Oct-07 20:33 
Abhijit Jana wrote:
While i am going to select any property descripton will come as Tooltip like all other proerty.


Still not clear. Ok see the following samples
[Description("This is a tooltip")]
public void ToolTip
{
   get{}
   set{}
}
Description is an attribute used to show the property description on the VS property bar for your control. If you want to show the description when mouse points over the property in code window, you need to enable XML documentation.
/// <summary>
/// Write here
/// </summary>
public void ToolTip
{
}
Now take the control library property pages and set XML documentation file. This will generate a XML documentation file when you compile the library. When adding reference to the library, copy this XML file too ( I think in VS2005, this will copied automatically). Now VS editor will show tool tip when you move mouse over to the property.

Let me know if it works.


GeneralRe: How to add tooltip with property ? Pin
Abhijit Jana28-Oct-07 20:59
professionalAbhijit Jana28-Oct-07 20:59 
GeneralRe: How to add tooltip with property ? Pin
N a v a n e e t h28-Oct-07 21:05
N a v a n e e t h28-Oct-07 21:05 
GeneralRe: How to add tooltip with property ? Pin
N a v a n e e t h28-Oct-07 21:12
N a v a n e e t h28-Oct-07 21:12 
GeneralRe: How to add tooltip with property ? Pin
Abhijit Jana28-Oct-07 21:20
professionalAbhijit Jana28-Oct-07 21:20 
GeneralRe: How to add tooltip with property ? Pin
Abhijit Jana28-Oct-07 21:48
professionalAbhijit Jana28-Oct-07 21:48 
GeneralRe: How to add tooltip with property ? Pin
N a v a n e e t h28-Oct-07 22:35
N a v a n e e t h28-Oct-07 22:35 
GeneralRe: How to add tooltip with property ? Pin
Abhijit Jana28-Oct-07 22:49
professionalAbhijit Jana28-Oct-07 22:49 
GeneralRe: How to add tooltip with property ? Pin
N a v a n e e t h28-Oct-07 22:57
N a v a n e e t h28-Oct-07 22:57 
GeneralRe: How to add tooltip with property ? Pin
Abhijit Jana29-Oct-07 0:17
professionalAbhijit Jana29-Oct-07 0:17 
GeneralRe: How to add tooltip with property ? Pin
N a v a n e e t h29-Oct-07 0:28
N a v a n e e t h29-Oct-07 0:28 
GeneralRe: How to add tooltip with property ? Pin
Abhijit Jana29-Oct-07 0:39
professionalAbhijit Jana29-Oct-07 0:39 
QuestionUse of Boxing/UnBoxing Pin
G.K.M.28-Oct-07 19:46
G.K.M.28-Oct-07 19:46 
AnswerRe: Use of Boxing/UnBoxing Pin
N a v a n e e t h28-Oct-07 20:00
N a v a n e e t h28-Oct-07 20:00 
AnswerRe: Use of Boxing/UnBoxing Pin
Abhijit Jana28-Oct-07 20:15
professionalAbhijit Jana28-Oct-07 20:15 
AnswerRe: Use of Boxing/UnBoxing Pin
Raj_coder28-Oct-07 22:22
Raj_coder28-Oct-07 22:22 
AnswerRe: Use of Boxing/UnBoxing Pin
Guffa28-Oct-07 22:45
Guffa28-Oct-07 22:45 
QuestionSource Code Pin
Nitin Raj28-Oct-07 19:42
Nitin Raj28-Oct-07 19:42 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.