Click here to Skip to main content
15,890,946 members
Home / Discussions / C#
   

C#

 
AnswerRe: String Escapes Pin
DigitalKing7-Feb-06 20:32
DigitalKing7-Feb-06 20:32 
QuestionToolTips for custom tabs Pin
Libor Tinka7-Feb-06 13:45
Libor Tinka7-Feb-06 13:45 
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 
Try calling AnimateWindow from the constructor of Main_Form
[DllImport("user32.dll")]
static extern bool AnimateWindow(IntPtr hwnd, uint dwTime, uint dwFlags);

enum AnimateWindowFlags : uint
{
    AW_HOR_POSITIVE = 0x00000001,
    AW_HOR_NEGATIVE = 0x00000002,
    AW_VER_POSITIVE = 0x00000004,
    AW_VER_NEGATIVE = 0x00000008,
    AW_CENTER = 0x00000010,
    AW_HIDE = 0x00010000,
    AW_ACTIVATE = 0x00020000,
    AW_SLIDE = 0x00040000,
    AW_BLEND = 0x00080000
}

public Main_Form ()
{
    ...
     AnimateWindow(this.Handle, 250, (uint)AnimateWindowFlags.AW_VER_NEGATIVE | (uint)AnimateWindowFlags.AW_CENTER);
    ...
}

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 
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 

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.