Click here to Skip to main content
15,887,027 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
Questionsetup installing also net Framework Pin
Member 1124932730-Mar-15 23:25
Member 1124932730-Mar-15 23:25 
AnswerRe: setup installing also net Framework Pin
Eddy Vluggen31-Mar-15 7:24
professionalEddy Vluggen31-Mar-15 7:24 
QuestionTabControl with Tabs of tabpages on both sides in a windows form Pin
fabsyl30-Mar-15 20:26
fabsyl30-Mar-15 20:26 
AnswerRe: TabControl with Tabs of tabpages on both sides in a windows form Pin
Eddy Vluggen31-Mar-15 7:20
professionalEddy Vluggen31-Mar-15 7:20 
GeneralRe: TabControl with Tabs of tabpages on both sides in a windows form Pin
fabsyl31-Mar-15 20:29
fabsyl31-Mar-15 20:29 
GeneralRe: TabControl with Tabs of tabpages on both sides in a windows form Pin
fabsyl31-Mar-15 22:26
fabsyl31-Mar-15 22:26 
GeneralRe: TabControl with Tabs of tabpages on both sides in a windows form Pin
Eddy Vluggen31-Mar-15 23:46
professionalEddy Vluggen31-Mar-15 23:46 
AnswerRe: TabControl with Tabs of tabpages on both sides in a windows form Pin
Gerry Schmitz1-Apr-15 0:17
mveGerry Schmitz1-Apr-15 0:17 
Use 2 TabControls; both the same size; one with Tabs aligned across top; the other with Tabs across the bottom.

At design time, try placing one over the other. The designer may balk, so you will have to align them in the form's constructor; e.g.
C#
this.tabControl2.Top = this.tabControl1.Top + 20;
this.tabControl2.Left = this.tabControl1.Left;

Note the Tops are offset by the height of the Tabs.

In the Selected event of EACH TabControl, "send" the other Tabcontrol "to the back"; e.g.
C#
private void tabControl2_Selected( object sender, TabControlEventArgs e ) {
   this.tabControl1.SendToBack();
}

(You can get fancy and determine which TabControl is already in front and not bother with the SendToBack() if it does not need to be done; visually, it probably makes no difference).
QuestionRe-Full Text Search Pin
Member 1116162530-Mar-15 1:55
Member 1116162530-Mar-15 1:55 
AnswerRe: Re-Full Text Search Pin
Richard MacCutchan30-Mar-15 2:34
mveRichard MacCutchan30-Mar-15 2:34 
AnswerRe: Re-Full Text Search Pin
Eddy Vluggen30-Mar-15 3:10
professionalEddy Vluggen30-Mar-15 3:10 
AnswerRe: Re-Full Text Search Pin
ZurdoDev30-Mar-15 4:45
professionalZurdoDev30-Mar-15 4:45 
QuestionRe-Index Pin
Member 1116162530-Mar-15 1:50
Member 1116162530-Mar-15 1:50 
AnswerRe: Re-Index Pin
ZurdoDev30-Mar-15 4:44
professionalZurdoDev30-Mar-15 4:44 
Questioni have just in time debugging problem Pin
rafizan4629-Mar-15 23:01
rafizan4629-Mar-15 23:01 
QuestionRe: i have just in time debugging problem Pin
Richard MacCutchan29-Mar-15 23:10
mveRichard MacCutchan29-Mar-15 23:10 
AnswerRe: i have just in time debugging problem Pin
rafizan4629-Mar-15 23:19
rafizan4629-Mar-15 23:19 
QuestionRe: i have just in time debugging problem Pin
Richard MacCutchan29-Mar-15 23:25
mveRichard MacCutchan29-Mar-15 23:25 
AnswerRe: i have just in time debugging problem Pin
rafizan4629-Mar-15 23:28
rafizan4629-Mar-15 23:28 
GeneralRe: i have just in time debugging problem Pin
Richard Deeming30-Mar-15 2:13
mveRichard Deeming30-Mar-15 2:13 
GeneralRe: i have just in time debugging problem Pin
rafizan4630-Mar-15 9:17
rafizan4630-Mar-15 9:17 
Questionhow to adjust the size of drawn rectangle at runtime Pin
Member 1144146829-Mar-15 20:12
Member 1144146829-Mar-15 20:12 
AnswerRe: how to adjust the size of drawn rectangle at runtime Pin
Richard MacCutchan29-Mar-15 21:12
mveRichard MacCutchan29-Mar-15 21:12 
QuestionLooking for a thorough Iron Python tutorial. Pin
Brady Kelly24-Mar-15 23:14
Brady Kelly24-Mar-15 23:14 
AnswerRe: Looking for a thorough Iron Python tutorial. Pin
Richard MacCutchan25-Mar-15 1:59
mveRichard MacCutchan25-Mar-15 1:59 

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.