Click here to Skip to main content
15,909,039 members
Home / Discussions / C#
   

C#

 
AnswerRe: How to Get All Databases Names in a Sql Server ? Pin
Michael Potter26-Aug-04 6:09
Michael Potter26-Aug-04 6:09 
GeneralRe: How to Get All Databases Names in a Sql Server ? Pin
pubududilena26-Aug-04 17:51
pubududilena26-Aug-04 17:51 
GeneralRe: How to Get All Databases Names in a Sql Server ? Pin
Michael Potter27-Aug-04 3:42
Michael Potter27-Aug-04 3:42 
Generalapplying splitter resizing on tab pages Pin
samithas26-Aug-04 1:21
samithas26-Aug-04 1:21 
GeneralRe: applying splitter resizing on tab pages Pin
Jay Shankar26-Aug-04 1:39
Jay Shankar26-Aug-04 1:39 
GeneralRe: applying splitter resizing on tab pages Pin
Heath Stewart26-Aug-04 8:14
protectorHeath Stewart26-Aug-04 8:14 
GeneralRe: applying splitter resizing on tab pages Pin
Jay Shankar26-Aug-04 16:24
Jay Shankar26-Aug-04 16:24 
GeneralRe: applying splitter resizing on tab pages Pin
Heath Stewart26-Aug-04 8:13
protectorHeath Stewart26-Aug-04 8:13 
What Jay said is partly right, but don't delete all your controls! Whatever the designer does is also manually possible. Remember that most design-time serialization is your actual source code file.

You need to set the TabIndex of each control accordingly. So, the order that Jay was talking about is the order you should use for your TabIndexs for each Control.

Then, in Controls.AddRange (the method to add controls to a parent control that you'll see in your source code), add the controls in the reverse order you did above. Internally, AddRange iterates through the control array in reverse. You could also just use Controls.Add - in which case you add the controls in the TabStop order - but you could potentially break the designer (behavior varies; it really likes using AddRange).

Software Design Engineer
Developer Division Sustained Engineering
Microsoft

[My Articles]
GeneralRe: applying splitter resizing on tab pages Pin
Jay Shankar26-Aug-04 16:43
Jay Shankar26-Aug-04 16:43 
GeneralRe: applying splitter resizing on tab pages Pin
Heath Stewart27-Aug-04 8:59
protectorHeath Stewart27-Aug-04 8:59 
Generalrecording screens on PocketPc's Pin
pat27088126-Aug-04 1:09
pat27088126-Aug-04 1:09 
GeneralRe: recording screens on PocketPc's Pin
Heath Stewart26-Aug-04 7:42
protectorHeath Stewart26-Aug-04 7:42 
GeneralRe: recording screens on PocketPc's Pin
Not Active26-Aug-04 9:38
mentorNot Active26-Aug-04 9:38 
GeneralRe: recording screens on PocketPc's Pin
pat27088126-Aug-04 11:14
pat27088126-Aug-04 11:14 
GeneralRe: recording screens on PocketPc's Pin
pat27088126-Aug-04 11:46
pat27088126-Aug-04 11:46 
GeneralSending Faxes Pin
Majid Shahabfar25-Aug-04 22:57
Majid Shahabfar25-Aug-04 22:57 
GeneralRe: Sending Faxes Pin
David Salter26-Aug-04 0:02
David Salter26-Aug-04 0:02 
GeneralRe: Sending Faxes Pin
Majid Shahabfar26-Aug-04 1:45
Majid Shahabfar26-Aug-04 1:45 
Generalpostion of text in label and text in textbox is not same Pin
arbrsoft25-Aug-04 21:35
arbrsoft25-Aug-04 21:35 
GeneralRe: postion of text in label and text in textbox is not same Pin
Steve Maier26-Aug-04 7:22
professionalSteve Maier26-Aug-04 7:22 
GeneralRe: postion of text in label and text in textbox is not same Pin
Heath Stewart26-Aug-04 8:04
protectorHeath Stewart26-Aug-04 8:04 
GeneralVirtual Listview Pin
Member 123021825-Aug-04 20:03
Member 123021825-Aug-04 20:03 
GeneralRe: Virtual Listview Pin
Dave Kreskowiak26-Aug-04 3:12
mveDave Kreskowiak26-Aug-04 3:12 
GeneralRe: Virtual Listview Pin
Heath Stewart26-Aug-04 7:47
protectorHeath Stewart26-Aug-04 7:47 
GeneralRe: Virtual Listview Pin
Heath Stewart26-Aug-04 7:55
protectorHeath Stewart26-Aug-04 7:55 

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.