Click here to Skip to main content
15,913,610 members
Home / Discussions / C#
   

C#

 
QuestionProgrammatically Deleting Data from a File Pin
JMitchem15-Sep-05 7:37
JMitchem15-Sep-05 7:37 
AnswerRe: Programmatically Deleting Data from a File Pin
Judah Gabriel Himango15-Sep-05 10:22
sponsorJudah Gabriel Himango15-Sep-05 10:22 
GeneralRe: Programmatically Deleting Data from a File Pin
JMitchem15-Sep-05 12:10
JMitchem15-Sep-05 12:10 
AnswerRe: Programmatically Deleting Data from a File Pin
Guffa15-Sep-05 11:44
Guffa15-Sep-05 11:44 
QuestionDesigner calls to class constructor several times! Pin
Lexa198315-Sep-05 7:03
Lexa198315-Sep-05 7:03 
AnswerRe: Designer calls to class constructor several times! Pin
Judah Gabriel Himango15-Sep-05 7:30
sponsorJudah Gabriel Himango15-Sep-05 7:30 
GeneralRe: Designer calls to class constructor several times! Pin
Lexa198315-Sep-05 8:19
Lexa198315-Sep-05 8:19 
GeneralRe: Designer calls to class constructor several times! Pin
Judah Gabriel Himango15-Sep-05 10:07
sponsorJudah Gabriel Himango15-Sep-05 10:07 
If your control inherits from System.ComponentModel.Component (or System.Control, which inherits from System.ComponentModel.Component), then you can get the value from the protected DesignMode property to indicate whether you're in design mode.

public class MyControl : Control
{
   public MyControl()
   {
      // in design mode?
      bool designMode = this.DesignMode;
   }
}


Tech, life, family, faith: Give me a visit.
I'm currently blogging about: Cops & Robbers
Judah Himango


GeneralRe: Designer calls to class constructor several times! Pin
Lexa198315-Sep-05 11:21
Lexa198315-Sep-05 11:21 
QuestionPut part of a gif file into imagebox? Pin
Seraphin15-Sep-05 6:58
Seraphin15-Sep-05 6:58 
AnswerRe: Put part of a gif file into imagebox? Pin
Lexa198315-Sep-05 7:09
Lexa198315-Sep-05 7:09 
GeneralRe: Put part of a gif file into imagebox? Pin
Seraphin15-Sep-05 7:21
Seraphin15-Sep-05 7:21 
GeneralRe: Put part of a gif file into imagebox? Pin
Lexa198315-Sep-05 8:10
Lexa198315-Sep-05 8:10 
GeneralRe: Put part of a gif file into imagebox? Pin
Seraphin15-Sep-05 9:45
Seraphin15-Sep-05 9:45 
Questiontreeview copy/paste Pin
xilefxilef15-Sep-05 6:50
xilefxilef15-Sep-05 6:50 
AnswerRe: treeview copy/paste Pin
Chals15-Sep-05 6:51
Chals15-Sep-05 6:51 
GeneralRe: treeview copy/paste Pin
xilefxilef15-Sep-05 7:36
xilefxilef15-Sep-05 7:36 
GeneralRe: treeview copy/paste Pin
Chals15-Sep-05 20:22
Chals15-Sep-05 20:22 
QuestionHow to get the last node of a TreeView Pin
Chals15-Sep-05 6:48
Chals15-Sep-05 6:48 
AnswerRe: How to get the last node of a TreeView Pin
xilefxilef15-Sep-05 6:59
xilefxilef15-Sep-05 6:59 
GeneralRe: How to get the last node of a TreeView Pin
Chals15-Sep-05 20:21
Chals15-Sep-05 20:21 
GeneralRe: How to get the last node of a TreeView Pin
xilefxilef17-Sep-05 9:59
xilefxilef17-Sep-05 9:59 
AnswerRe: How to get the last node of a TreeView Pin
Rcms Support29-Oct-17 20:02
Rcms Support29-Oct-17 20:02 
QuestionArraylists, Collections & Dictionaries... Pin
raysot77715-Sep-05 5:41
raysot77715-Sep-05 5:41 
AnswerRe: Arraylists, Collections & Dictionaries... Pin
Guffa15-Sep-05 6:18
Guffa15-Sep-05 6:18 

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.