Click here to Skip to main content
15,925,133 members
Home / Discussions / C#
   

C#

 
AnswerRe: How to get HTML source of Webpage in C# ? Pin
Ravi Bhavnani10-Jan-07 2:27
professionalRavi Bhavnani10-Jan-07 2:27 
GeneralRe: How to get HTML source of Webpage in C# ? Pin
Supriya Tonape10-Jan-07 2:46
Supriya Tonape10-Jan-07 2:46 
QuestionC# and Games Pin
kbalias9-Jan-07 22:43
kbalias9-Jan-07 22:43 
AnswerRe: C# and Games Pin
J4amieC9-Jan-07 22:53
J4amieC9-Jan-07 22:53 
AnswerRe: C# and Games Pin
Pete O'Hanlon9-Jan-07 22:55
mvePete O'Hanlon9-Jan-07 22:55 
AnswerRe: C# and Games Pin
Colin Angus Mackay9-Jan-07 23:16
Colin Angus Mackay9-Jan-07 23:16 
AnswerRe: C# and Games Pin
Christian Graus9-Jan-07 23:29
protectorChristian Graus9-Jan-07 23:29 
GeneralRe: C# and Games Pin
Pete O'Hanlon9-Jan-07 23:36
mvePete O'Hanlon9-Jan-07 23:36 
Questionbarcode generator Pin
cellardoor07169-Jan-07 22:36
cellardoor07169-Jan-07 22:36 
AnswerRe: barcode generator Pin
Christian Graus9-Jan-07 22:52
protectorChristian Graus9-Jan-07 22:52 
GeneralRe: barcode generator Pin
cellardoor07169-Jan-07 22:58
cellardoor07169-Jan-07 22:58 
GeneralRe: barcode generator Pin
Christian Graus9-Jan-07 23:30
protectorChristian Graus9-Jan-07 23:30 
GeneralRe: barcode generator Pin
cellardoor07169-Jan-07 23:37
cellardoor07169-Jan-07 23:37 
GeneralRe: barcode generator Pin
GaryWoodfine 10-Jan-07 5:36
professionalGaryWoodfine 10-Jan-07 5:36 
AnswerRe: barcode generator Pin
Luc Pattyn10-Jan-07 8:46
sitebuilderLuc Pattyn10-Jan-07 8:46 
Questionusercontrol property Pin
Marc Soleda9-Jan-07 22:32
Marc Soleda9-Jan-07 22:32 
AnswerRe: usercontrol property Pin
Luc Pattyn9-Jan-07 23:17
sitebuilderLuc Pattyn9-Jan-07 23:17 
Hi Marc,

While developping your UserControl, add a property the way you always do it.

Then add XML comments (triple slashed) if you want these
Then add attributes for the future users of your UserControl

When using your UserControl, the Designer will:
- show the description you gave as a help text (at bottom of pane)
- use "Category" to group properties (when in grouped rather than alphabetical order)
in the Properties panel of your UserControl,

An unfortunate consequence seems to be, if you want both XML and Designer help,
you end up repeating the same textual description.

like so:

/// <summary>
/// Gets or sets a flag to indicate ...
/// </summary>
[Category("MyUserControl"), Description("Gets or sets a flag to "+
				 "indicate ...")]
public bool SomeFlag {get {return someFlag;} set {someFlag=value;}}


Smile | :)




Luc Pattyn

QuestionAbout MCTS exams Pin
mrcooll9-Jan-07 22:28
mrcooll9-Jan-07 22:28 
AnswerRe: About MCTS exams Pin
Christian Graus9-Jan-07 22:40
protectorChristian Graus9-Jan-07 22:40 
AnswerRe: About MCTS exams Pin
Ravi Bhavnani10-Jan-07 2:30
professionalRavi Bhavnani10-Jan-07 2:30 
QuestionProblem in WebBrowser.Print() Method Pin
stancrm9-Jan-07 22:22
stancrm9-Jan-07 22:22 
AnswerRe: Problem in WebBrowser.Print() Method Pin
blackjack215010-Jan-07 0:02
blackjack215010-Jan-07 0:02 
AnswerRe: Problem in WebBrowser.Print() Method Pin
TrooperIronMan10-Jan-07 3:31
TrooperIronMan10-Jan-07 3:31 
QuestionMulti Threading - All the threads are not completing Pin
jk_just9-Jan-07 22:01
jk_just9-Jan-07 22:01 
AnswerRe: Multi Threading - All the threads are not completing Pin
Luc Pattyn9-Jan-07 22:38
sitebuilderLuc Pattyn9-Jan-07 22:38 

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.