Click here to Skip to main content
16,005,206 members
Home / Discussions / C#
   

C#

 
GeneralPreserving what is drawn to Controls Pin
Member 94235530-Aug-04 15:05
Member 94235530-Aug-04 15:05 
GeneralRe: Preserving what is drawn to Controls Pin
Christian Graus30-Aug-04 15:09
protectorChristian Graus30-Aug-04 15:09 
GeneralRe: Preserving what is drawn to Controls Pin
Joel Lucsy30-Aug-04 17:02
Joel Lucsy30-Aug-04 17:02 
GeneralRe: Preserving what is drawn to Controls Pin
Member 94235531-Aug-04 4:38
Member 94235531-Aug-04 4:38 
GeneralRe: Preserving what is drawn to Controls Pin
Joel Lucsy31-Aug-04 4:46
Joel Lucsy31-Aug-04 4:46 
GeneralRe: Preserving what is drawn to Controls Pin
Member 9423552-Sep-04 0:32
Member 9423552-Sep-04 0:32 
GeneralWhy selected items in a checkedListBox don't show in order Pin
abhishk2001@yahoo.com30-Aug-04 14:50
abhishk2001@yahoo.com30-Aug-04 14:50 
GeneralRe: Why selected items in a checkedListBox don't show in order Pin
Bill Dean30-Aug-04 16:24
Bill Dean30-Aug-04 16:24 
Hi Abhi,

Take a look in your form's InitializeComponent() method. Somewhere in there, the VS designer wrote you some code like:
groupBox1.Controls.Add(this.CheckedListBoxE);
groupBox1.Controls.Add(this.CheckedListBoxD);
...

The items appear in the Controls collection in the order in which they were added (AFAIK). So either: edit the InitializeComponent() code to reverse the order in which they are added, or just reverse your loop and work for the end of the collection forward. I'd do the former, but I don't think there's a compelling argument either way.

Hope this helps,
Bill
GeneralRe: Why selected items in a checkedListBox don't show in order Pin
S Sansanwal30-Aug-04 16:57
S Sansanwal30-Aug-04 16:57 
QuestionError: Failed to delay load library mscorlib.dll ? Pin
Cyric7430-Aug-04 14:18
Cyric7430-Aug-04 14:18 
AnswerRe: Error: Failed to delay load library mscorlib.dll ? Pin
Christian Graus30-Aug-04 15:08
protectorChristian Graus30-Aug-04 15:08 
GeneralRe: Error: Failed to delay load library mscorlib.dll ? Pin
Cyric7430-Aug-04 18:33
Cyric7430-Aug-04 18:33 
GeneralRe: Error: Failed to delay load library mscorlib.dll ? Pin
Christian Graus31-Aug-04 10:23
protectorChristian Graus31-Aug-04 10:23 
QuestionSetting the icon for a program ? Pin
Christian Graus30-Aug-04 12:02
protectorChristian Graus30-Aug-04 12:02 
AnswerRe: Setting the icon for a program ? Pin
Heath Stewart30-Aug-04 12:33
protectorHeath Stewart30-Aug-04 12:33 
GeneralRe: Setting the icon for a program ? Pin
Christian Graus30-Aug-04 12:43
protectorChristian Graus30-Aug-04 12:43 
AnswerRe: Setting the icon for a program ? Pin
Christian Graus30-Aug-04 12:41
protectorChristian Graus30-Aug-04 12:41 
GeneralRestoring a previous instance. Pin
Dionne30-Aug-04 9:40
Dionne30-Aug-04 9:40 
GeneralRe: Restoring a previous instance. Pin
Heath Stewart30-Aug-04 9:51
protectorHeath Stewart30-Aug-04 9:51 
GeneralRe: Restoring a previous instance. Pin
Dionne30-Aug-04 9:54
Dionne30-Aug-04 9:54 
GeneralRe: Restoring a previous instance. Pin
Heath Stewart30-Aug-04 10:54
protectorHeath Stewart30-Aug-04 10:54 
GeneralRe: Restoring a previous instance. Pin
Nick Parker30-Aug-04 9:53
protectorNick Parker30-Aug-04 9:53 
GeneralRe: Restoring a previous instance. Pin
Dionne30-Aug-04 10:06
Dionne30-Aug-04 10:06 
GeneralRe: Restoring a previous instance. Pin
Nick Parker30-Aug-04 10:30
protectorNick Parker30-Aug-04 10:30 
GeneralRe: Restoring a previous instance. Pin
Dionne30-Aug-04 10:57
Dionne30-Aug-04 10:57 

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.