Click here to Skip to main content
15,886,513 members
Home / Discussions / C#
   

C#

 
QuestionData Adapter ?? Pin
VPMahank30-Jan-06 5:29
VPMahank30-Jan-06 5:29 
QuestionMessage Box in C# Pin
idreesbadshah30-Jan-06 4:27
idreesbadshah30-Jan-06 4:27 
AnswerRe: Message Box in C# Pin
Alvaro Mendez30-Jan-06 5:46
Alvaro Mendez30-Jan-06 5:46 
GeneralRe: Message Box in C# Pin
ventomito30-Jan-06 9:46
ventomito30-Jan-06 9:46 
GeneralRe: Message Box in C# Pin
Dave Kreskowiak30-Jan-06 13:56
mveDave Kreskowiak30-Jan-06 13:56 
AnswerRe: Message Box in C# Pin
luckyv1-Feb-06 6:29
luckyv1-Feb-06 6:29 
QuestionUserControl Problem w/Exposing Property Pin
MarkMokris30-Jan-06 4:19
MarkMokris30-Jan-06 4:19 
AnswerRe: UserControl Problem w/Exposing Property Pin
kasik30-Jan-06 5:09
kasik30-Jan-06 5:09 
The Text property of the UserControl class has its Browsable attribute set to false, so you will need to add it (however this will create some serialization issues, so you will also need to add a DesignerSerializationVisibility attribute, set to Visible)...

[
Category("Appearance"),
Browsable(true),
DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)
]
public override String Text
{
    get { return ColorCheckBoxLabel.Text; }
    set { ColorCheckBoxLabel.Text = value; }
}


Cheers,
Will H

-- modified at 11:15 Monday 30th January, 2006
GeneralRe: UserControl Problem w/Exposing Property Pin
MarkMokris30-Jan-06 6:01
MarkMokris30-Jan-06 6:01 
GeneralRe: UserControl Problem w/Exposing Property Pin
kasik30-Jan-06 6:08
kasik30-Jan-06 6:08 
Question.Net Framework Pin
Net-Programer-and-developer30-Jan-06 4:10
Net-Programer-and-developer30-Jan-06 4:10 
AnswerRe: .Net Framework Pin
User 665830-Jan-06 4:43
User 665830-Jan-06 4:43 
AnswerRe: .Net Framework Pin
Dave Kreskowiak30-Jan-06 13:54
mveDave Kreskowiak30-Jan-06 13:54 
QuestionSerialization of ListDictionary Pin
zeo3330-Jan-06 3:49
zeo3330-Jan-06 3:49 
QuestionWindows forms and Test dialog in C# Pin
talbot30-Jan-06 3:37
talbot30-Jan-06 3:37 
Questionparent and child nodes Pin
dhol30-Jan-06 2:30
dhol30-Jan-06 2:30 
Questionicons for binayr files Pin
relsirc30-Jan-06 1:46
relsirc30-Jan-06 1:46 
QuestionInterfaces? Pin
FruitBatInShades30-Jan-06 1:26
FruitBatInShades30-Jan-06 1:26 
AnswerRe: Interfaces? Pin
Guffa30-Jan-06 2:25
Guffa30-Jan-06 2:25 
AnswerRe: Interfaces? Pin
User 665830-Jan-06 4:39
User 665830-Jan-06 4:39 
QuestionAnyone used/worked with iTextSharp off sourceforge.net Pin
NewbieDude30-Jan-06 1:15
NewbieDude30-Jan-06 1:15 
AnswerRe: Anyone used/worked with iTextSharp off sourceforge.net Pin
Ravi Bhavnani30-Jan-06 8:07
professionalRavi Bhavnani30-Jan-06 8:07 
QuestionDataGrid + array Pin
ita_cas30-Jan-06 1:00
ita_cas30-Jan-06 1:00 
QuestionHow to get SqlTypes of a particular column in sqlserver using C# Pin
YogeshChoudhary30-Jan-06 0:58
YogeshChoudhary30-Jan-06 0:58 
QuestionC# or VB? Pin
cybernd30-Jan-06 0:51
cybernd30-Jan-06 0:51 

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.