Click here to Skip to main content
15,920,801 members
Home / Discussions / C#
   

C#

 
GeneralRe: Catching exceptions for child processes Pin
Gareth H27-Jan-08 22:29
Gareth H27-Jan-08 22:29 
GeneralRe: Catching exceptions for child processes Pin
manustone27-Jan-08 23:03
manustone27-Jan-08 23:03 
GeneralNull Reference Exception while using threads Pin
DeepOceans27-Jan-08 22:20
DeepOceans27-Jan-08 22:20 
GeneralRe: Null Reference Exception while using threads Pin
Gareth H27-Jan-08 22:49
Gareth H27-Jan-08 22:49 
GeneralRe: Null Reference Exception while using threads Pin
DeepOceans28-Jan-08 18:36
DeepOceans28-Jan-08 18:36 
GeneralQuestion about PropertyGrid Pin
stancrm27-Jan-08 21:47
stancrm27-Jan-08 21:47 
GeneralRe: Question about PropertyGrid Pin
Mircea Puiu27-Jan-08 21:50
Mircea Puiu27-Jan-08 21:50 
GeneralRe: Question about PropertyGrid Pin
stancrm27-Jan-08 21:56
stancrm27-Jan-08 21:56 
class MyClass
{
  private Parent parent = new Parent();
  public Parent ParentInstance
  {
    get { return parent; }
    set { parent = value; }
  }
}

class Parent
{
  private Child child = new Child();
  public Child ChildInstance
  {
    get { return child; }
    set { child = value; }
  }
}

class Child
{
  private string text = "Hello Child";
  public string Text
  {
    get { return text; }
    set { text = value; }
  }
}


I change the member variable into properties.
It doesn't work also.
Probably there are some attribute to make the
properties in child class visible...?

I can only see "ParentInstance" gray and not editable
or clickable....
GeneralRe: Question about PropertyGrid Pin
Mircea Puiu27-Jan-08 22:20
Mircea Puiu27-Jan-08 22:20 
GeneralRe: Question about PropertyGrid Pin
visualhint30-Jan-08 5:44
visualhint30-Jan-08 5:44 
Generalretrieving list of columns and along with their datatypes Pin
chanzeb27-Jan-08 21:33
chanzeb27-Jan-08 21:33 
GeneralRe: retrieving list of columns and along with their datatypes Pin
Gareth H27-Jan-08 22:46
Gareth H27-Jan-08 22:46 
QuestionSet DataGridView cell value if parse fails Pin
Noemi Katinka27-Jan-08 21:30
Noemi Katinka27-Jan-08 21:30 
GeneralRe: Set DataGridView cell value if parse fails Pin
Mircea Puiu27-Jan-08 21:49
Mircea Puiu27-Jan-08 21:49 
GeneralRe: Set DataGridView cell value if parse fails Pin
Noemi Katinka27-Jan-08 21:57
Noemi Katinka27-Jan-08 21:57 
GeneralRe: Set DataGridView cell value if parse fails Pin
Mircea Puiu27-Jan-08 22:24
Mircea Puiu27-Jan-08 22:24 
GeneralI need to change to Array Pin
Alex50127-Jan-08 20:19
Alex50127-Jan-08 20:19 
AnswerRe: I need to change to Array Pin
Kyle Rozendo27-Jan-08 21:07
Kyle Rozendo27-Jan-08 21:07 
GeneralRe: I need to change to Array Pin
Gareth H27-Jan-08 22:36
Gareth H27-Jan-08 22:36 
GeneralRe: I need to change to Array Pin
Kyle Rozendo27-Jan-08 23:32
Kyle Rozendo27-Jan-08 23:32 
GeneralRe: I need to change to Array Pin
Alex50128-Jan-08 7:13
Alex50128-Jan-08 7:13 
GeneralRe: I need to change to Array Pin
PIEBALDconsult28-Jan-08 9:37
mvePIEBALDconsult28-Jan-08 9:37 
GeneralRe: I need to change to Array Pin
Alex50130-Jan-08 17:56
Alex50130-Jan-08 17:56 
GeneralRe: I need to change to Array Pin
Jeeva Jose27-Jan-08 21:12
Jeeva Jose27-Jan-08 21:12 
GeneralRe: I need to change to Array Pin
PIEBALDconsult28-Jan-08 9:35
mvePIEBALDconsult28-Jan-08 9:35 

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.