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

C#

 
GeneralRe: Thread safe issue in string operation Pin
led mike5-Jan-09 5:10
led mike5-Jan-09 5:10 
GeneralRe: Thread safe issue in string operation Pin
moon_stick5-Jan-09 5:27
moon_stick5-Jan-09 5:27 
GeneralRe: Thread safe issue in string operation Pin
George_George5-Jan-09 22:45
George_George5-Jan-09 22:45 
GeneralRe: Thread safe issue in string operation Pin
George_George5-Jan-09 22:44
George_George5-Jan-09 22:44 
AnswerRe: Thread safe issue in string operation Pin
Abhijit Jana5-Jan-09 2:40
professionalAbhijit Jana5-Jan-09 2:40 
GeneralRe: Thread safe issue in string operation Pin
George_George5-Jan-09 3:30
George_George5-Jan-09 3:30 
GeneralRe: Thread safe issue in string operation Pin
Abhijit Jana5-Jan-09 4:08
professionalAbhijit Jana5-Jan-09 4:08 
GeneralRe: Thread safe issue in string operation Pin
George_George5-Jan-09 22:41
George_George5-Jan-09 22:41 
GeneralRe: Thread safe issue in string operation Pin
Abhijit Jana6-Jan-09 0:55
professionalAbhijit Jana6-Jan-09 0:55 
GeneralRe: Thread safe issue in string operation Pin
George_George10-Jan-09 2:43
George_George10-Jan-09 2:43 
AnswerRe: Thread safe issue in string operation Pin
J4amieC5-Jan-09 2:47
J4amieC5-Jan-09 2:47 
GeneralRe: Thread safe issue in string operation Pin
George_George5-Jan-09 3:28
George_George5-Jan-09 3:28 
GeneralRe: Thread safe issue in string operation Pin
J4amieC5-Jan-09 3:33
J4amieC5-Jan-09 3:33 
GeneralRe: Thread safe issue in string operation Pin
George_George5-Jan-09 3:40
George_George5-Jan-09 3:40 
GeneralRe: Thread safe issue in string operation Pin
J4amieC5-Jan-09 4:17
J4amieC5-Jan-09 4:17 
GeneralRe: Thread safe issue in string operation Pin
George_George5-Jan-09 22:43
George_George5-Jan-09 22:43 
GeneralRe: Thread safe issue in string operation Pin
Jon Rista6-Jan-09 11:53
Jon Rista6-Jan-09 11:53 
GeneralRe: Thread safe issue in string operation Pin
George_George10-Jan-09 2:44
George_George10-Jan-09 2:44 
QuestionRemove items from property grid Pin
Naveed7275-Jan-09 2:07
Naveed7275-Jan-09 2:07 
AnswerRe: Remove items from property grid Pin
Dragonfly_Lee5-Jan-09 4:01
Dragonfly_Lee5-Jan-09 4:01 
I am afraid we can not do this for defined control, such as Textbox. But we can set the visible property for custom control(e.g. MyTextbox) via Browserable attribute. If we want to expose some certain property from Textbox, we can hold the reference in MyTextbox object. For example:

class MyTextbox
{
TextBox textbox;

public string Text
{
get
{
return this.textbox.Text;
}
set
{
this.textbox.Text = value;
}

}
}

Hope this will help you ~

Tan Li

I Love KongFu~

QuestionHow to detect .net Framework 3.5 is installed or available Pin
Seraph_summer5-Jan-09 1:32
Seraph_summer5-Jan-09 1:32 
AnswerRe: How to detect .net Framework 3.5 is installed or available Pin
Pete O'Hanlon5-Jan-09 1:37
mvePete O'Hanlon5-Jan-09 1:37 
GeneralRe: How to detect .net Framework 3.5 is installed or available Pin
Seraph_summer5-Jan-09 1:44
Seraph_summer5-Jan-09 1:44 
AnswerRe: How to detect .net Framework 3.5 is installed or available Pin
Member 44703545-Jan-09 2:16
Member 44703545-Jan-09 2:16 
GeneralRe: How to detect .net Framework 3.5 is installed or available Pin
Jon Rista6-Jan-09 14:53
Jon Rista6-Jan-09 14:53 

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.