Click here to Skip to main content
15,889,116 members
Home / Discussions / Windows Forms
   

Windows Forms

 
JokeRe: Application Security - Design Question Pin
johannesnestler26-Aug-10 4:13
johannesnestler26-Aug-10 4:13 
AnswerRe: Application Security - Design Question Pin
All Time Programming3-Sep-10 3:49
All Time Programming3-Sep-10 3:49 
QuestionForm with FormBorderStyle=FixedToolWindow && No close button [modified] Pin
King Balkoth2-Aug-10 12:46
King Balkoth2-Aug-10 12:46 
AnswerRe: Form with FormBorderStyle=FixedToolWindow && No close button Pin
Luc Pattyn2-Aug-10 13:03
sitebuilderLuc Pattyn2-Aug-10 13:03 
GeneralRe: Form with FormBorderStyle=FixedToolWindow && No close button Pin
King Balkoth2-Aug-10 21:33
King Balkoth2-Aug-10 21:33 
Answer[Update] Re: Form with FormBorderStyle=FixedToolWindow && No close button Pin
King Balkoth16-Aug-10 6:39
King Balkoth16-Aug-10 6:39 
QuestionManaging tabs in a multiline tab control Pin
ruanr29-Jul-10 23:11
ruanr29-Jul-10 23:11 
AnswerRe: Managing tabs in a multiline tab control Pin
Eddy Vluggen2-Aug-10 1:09
professionalEddy Vluggen2-Aug-10 1:09 
ruanr wrote:
Is that at all possible?


Yup. Did you run into a non-working insert method? If yes, then there's a workaround[^].

C#
IntPtr h = tabControl.Handle;
tabControl.TabPages.Insert(0, "test");


Alternatively, you could move pages around as shown below Smile | :)

C#
var tabControl = new TabControl();
tabControl.Parent = this;
tabControl.Dock = DockStyle.Fill;
tabControl.Multiline = true;
Controls.Add(tabControl);

// Create some tabs
tabControl.TabPages.Add("bla");
tabControl.TabPages.Add("bla2");
tabControl.TabPages.Add("bla3");

// Swap tab 0 & 1
var temp = tabControl.TabPages[1];
tabControl.TabPages[1] = tabControl.TabPages[0];
tabControl.TabPages[0] = temp;

I are Troll Suspicious | :suss:

QuestionWhat is best way to convert desktop app to web app? Pin
bobishkindaguy20-Jul-10 12:18
bobishkindaguy20-Jul-10 12:18 
AnswerRe: What is best way to convert desktop app to web app? Pin
Abhinav S20-Jul-10 18:30
Abhinav S20-Jul-10 18:30 
GeneralRe: What is best way to convert desktop app to web app? [modified] Pin
bobishkindaguy21-Jul-10 6:25
bobishkindaguy21-Jul-10 6:25 
AnswerRe: What is best way to convert desktop app to web app? Pin
Mycroft Holmes20-Jul-10 19:45
professionalMycroft Holmes20-Jul-10 19:45 
GeneralRe: What is best way to convert desktop app to web app? Pin
bobishkindaguy21-Jul-10 6:24
bobishkindaguy21-Jul-10 6:24 
GeneralRe: What is best way to convert desktop app to web app? Pin
Max Peck22-Jul-10 15:56
Max Peck22-Jul-10 15:56 
GeneralRe: What is best way to convert desktop app to web app? Pin
bobishkindaguy27-Jul-10 9:44
bobishkindaguy27-Jul-10 9:44 
AnswerRe: What is best way to convert desktop app to web app? Pin
Eddy Vluggen21-Jul-10 1:21
professionalEddy Vluggen21-Jul-10 1:21 
GeneralRe: What is best way to convert desktop app to web app? Pin
bobishkindaguy21-Jul-10 6:27
bobishkindaguy21-Jul-10 6:27 
GeneralRe: What is best way to convert desktop app to web app? Pin
Eddy Vluggen21-Jul-10 7:13
professionalEddy Vluggen21-Jul-10 7:13 
GeneralRe: What is best way to convert desktop app to web app? Pin
bobishkindaguy21-Jul-10 8:50
bobishkindaguy21-Jul-10 8:50 
GeneralRe: What is best way to convert desktop app to web app? Pin
Eddy Vluggen21-Jul-10 9:05
professionalEddy Vluggen21-Jul-10 9:05 
GeneralRe: What is best way to convert desktop app to web app? Pin
bobishkindaguy22-Jul-10 6:48
bobishkindaguy22-Jul-10 6:48 
AnswerRe: What is best way to convert desktop app to web app? PinPopular
Luc Pattyn21-Jul-10 2:22
sitebuilderLuc Pattyn21-Jul-10 2:22 
GeneralRe: What is best way to convert desktop app to web app? Pin
DaveyM6921-Jul-10 7:01
professionalDaveyM6921-Jul-10 7:01 
GeneralRe: What is best way to convert desktop app to web app? Pin
bobishkindaguy21-Jul-10 8:27
bobishkindaguy21-Jul-10 8:27 
GeneralRe: What is best way to convert desktop app to web app? Pin
DaveyM6921-Jul-10 8:47
professionalDaveyM6921-Jul-10 8:47 

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.