Click here to Skip to main content
15,922,894 members
Home / Discussions / C#
   

C#

 
GeneralRe: Problems with Array being readonly (HELP) Pin
Guffa16-Sep-05 0:31
Guffa16-Sep-05 0:31 
GeneralRe: Problems with Array being readonly (HELP) Pin
Yannielsen16-Sep-05 0:56
Yannielsen16-Sep-05 0:56 
GeneralRe: Problems with Array being readonly (HELP) Pin
Guffa16-Sep-05 1:59
Guffa16-Sep-05 1:59 
GeneralRe: Problems with Array being readonly (HELP) Pin
Yannielsen16-Sep-05 2:12
Yannielsen16-Sep-05 2:12 
GeneralRe: Problems with Array being readonly (HELP) Pin
Guffa16-Sep-05 5:11
Guffa16-Sep-05 5:11 
GeneralRe: Problems with Array being readonly (HELP) Pin
Yannielsen19-Sep-05 10:13
Yannielsen19-Sep-05 10:13 
QuestionDataGrid/DataGridBoolColumn - event Pin
JuergenLissmann15-Sep-05 21:48
JuergenLissmann15-Sep-05 21:48 
QuestionHow to override the Text property of Control class? Pin
dreamwinter15-Sep-05 20:54
dreamwinter15-Sep-05 20:54 
Confused | :confused: I create a UserControl and add a TextBox into the control.I want to have a Text property,in order that set or get the TextBox.Text.But I know Control class had the same property,and then I key the code that in list
--------------------
public partial class UserControl1 : UserControl
{
string _t;
[Browsable(true)]
public override string Text
{
get
{
this.textBox1.Text = _t;
return _t;
}
set
{
_t = value;
this.textBox1.Text = _t;
}
...
}
-----------------------------
When I test the control,I modify the Text property in the Properties Designer of the VS.NET 2005,The Control.Text get a value.But I open the method InitializeComponent() ,I can not find the code that initialize control.Text.
So,When the test application running,The value that Text property of the TextBox in the control is lost.
Can you tell me why? How to deal with it? Thanks a lot!
AnswerRe: How to override the Text property of Control class? Pin
Libra15-Sep-05 23:33
Libra15-Sep-05 23:33 
QuestionSearching in Linked List Pin
Member 204556015-Sep-05 20:54
Member 204556015-Sep-05 20:54 
AnswerRe: Searching in Linked List Pin
g00fyman15-Sep-05 22:56
g00fyman15-Sep-05 22:56 
AnswerRe: Searching in Linked List Pin
enjoycrack15-Sep-05 22:56
enjoycrack15-Sep-05 22:56 
AnswerRe: Searching in Linked List Pin
S. Senthil Kumar16-Sep-05 5:13
S. Senthil Kumar16-Sep-05 5:13 
QuestionCreating Custom Shaped Windows Forms Pin
Member 204556015-Sep-05 20:21
Member 204556015-Sep-05 20:21 
AnswerRe: Creating Custom Shaped Windows Forms Pin
g00fyman15-Sep-05 23:05
g00fyman15-Sep-05 23:05 
QuestionInputting data in Graphics of C. Pin
Rana isthiaq Ahamd15-Sep-05 19:26
Rana isthiaq Ahamd15-Sep-05 19:26 
QuestionHow do I get a HACK task to span multiple lines? Pin
Vikram A Punathambekar15-Sep-05 19:18
Vikram A Punathambekar15-Sep-05 19:18 
AnswerRe: How do I get a HACK task to span multiple lines? Pin
turbochimp16-Sep-05 17:14
turbochimp16-Sep-05 17:14 
GeneralRe: How do I get a HACK task to span multiple lines? Pin
Vikram A Punathambekar18-Sep-05 17:35
Vikram A Punathambekar18-Sep-05 17:35 
QuestionHow to end a program Pin
cue_ball15-Sep-05 19:10
cue_ball15-Sep-05 19:10 
GeneralRe: How to end a program Pin
Vikram A Punathambekar15-Sep-05 19:29
Vikram A Punathambekar15-Sep-05 19:29 
GeneralRe: How to end a program Pin
cue_ball15-Sep-05 19:58
cue_ball15-Sep-05 19:58 
GeneralRe: How to end a program Pin
Vikram A Punathambekar15-Sep-05 20:15
Vikram A Punathambekar15-Sep-05 20:15 
AnswerRe: How to end a program Pin
g00fyman15-Sep-05 23:13
g00fyman15-Sep-05 23:13 
Questionhow Pass form values from one page to the next. Pin
mohd rafi15-Sep-05 18:17
mohd rafi15-Sep-05 18:17 

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.