Click here to Skip to main content
15,891,136 members
Home / Discussions / C#
   

C#

 
AnswerRe: ToolTips for custom tabs Pin
Ingo7-Feb-06 23:14
Ingo7-Feb-06 23:14 
GeneralRe: ToolTips for custom tabs Pin
Libor Tinka7-Feb-06 23:37
Libor Tinka7-Feb-06 23:37 
GeneralRe: ToolTips for custom tabs Pin
Ingo8-Feb-06 0:24
Ingo8-Feb-06 0:24 
GeneralRe: ToolTips for custom tabs Pin
Libor Tinka8-Feb-06 1:19
Libor Tinka8-Feb-06 1:19 
QuestionAnimate Window Pin
Sean897-Feb-06 13:22
Sean897-Feb-06 13:22 
AnswerRe: Animate Window Pin
DigitalKing7-Feb-06 15:24
DigitalKing7-Feb-06 15:24 
GeneralRe: Animate Window Pin
Sean897-Feb-06 16:02
Sean897-Feb-06 16:02 
GeneralRe: Animate Window Pin
DigitalKing7-Feb-06 16:34
DigitalKing7-Feb-06 16:34 
That is weird.

For me, it works both before and after InitializeComponent();
To get around it not starting in the proper position (at least in .net 2.0) you can do something like this:

public Form1()
{
    this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
    /*
    //If you're setting the position manually:
    this.Top = 200;
    this.Left = 200;
    this.StartPosition = FormStartPosition.Manual;*/
    AnimateWindow(this.Handle, 250, (uint)AnimateWindowFlags.AW_VER_NEGATIVE | (uint)AnimateWindowFlags.AW_CENTER);
    InitializeComponent();
}

QuestionRegEx Pin
Expert Coming7-Feb-06 12:21
Expert Coming7-Feb-06 12:21 
AnswerRe: RegEx Pin
Guffa7-Feb-06 13:13
Guffa7-Feb-06 13:13 
GeneralRe: RegEx Pin
Expert Coming7-Feb-06 13:41
Expert Coming7-Feb-06 13:41 
QuestionHelp - Code Pin
Expert Coming7-Feb-06 14:21
Expert Coming7-Feb-06 14:21 
AnswerRe: Help - Code Pin
Guffa7-Feb-06 14:40
Guffa7-Feb-06 14:40 
GeneralRe: Help - Code Pin
Expert Coming7-Feb-06 14:56
Expert Coming7-Feb-06 14:56 
AnswerRe: Help - Code Pin
DigitalKing7-Feb-06 15:12
DigitalKing7-Feb-06 15:12 
GeneralRe: Help - Code Pin
Expert Coming7-Feb-06 16:35
Expert Coming7-Feb-06 16:35 
QuestionRestated Pin
Expert Coming7-Feb-06 16:48
Expert Coming7-Feb-06 16:48 
QuestionFound Where, but How? Pin
Expert Coming7-Feb-06 17:13
Expert Coming7-Feb-06 17:13 
AnswerRe: Found Where, but How? Pin
Guffa7-Feb-06 19:31
Guffa7-Feb-06 19:31 
GeneralRe: Found Where, but How? Pin
Expert Coming7-Feb-06 19:45
Expert Coming7-Feb-06 19:45 
GeneralRe: Found Where, but How? Pin
J4amieC7-Feb-06 21:41
J4amieC7-Feb-06 21:41 
AnswerRe: Found Where, but How? Pin
Guffa7-Feb-06 22:17
Guffa7-Feb-06 22:17 
QuestionMakecert source code Pin
Paul Strous7-Feb-06 11:59
Paul Strous7-Feb-06 11:59 
QuestionExtract Dataset to Excel Pin
cyrus_thevirus7-Feb-06 11:33
cyrus_thevirus7-Feb-06 11:33 
QuestionSend Text Message to Phone Pin
cyrus_thevirus7-Feb-06 11:27
cyrus_thevirus7-Feb-06 11:27 

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.