Click here to Skip to main content
16,012,168 members
Home / Discussions / C#
   

C#

 
QuestionString Escapes Pin
Expert Coming7-Feb-06 19:28
Expert Coming7-Feb-06 19:28 
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 
Can anyone tell me why this isn't animating the window? It was doing it earlier but then it stopped for some reason Confused | :confused:

[DllImport("user32.dll")]<br />
static extern bool AnimateWindow(IntPtr hwnd, uint dwTime, uint dwFlags);<br />
<br />
enum AnimateWindowFlags : uint<br />
{<br />
    AW_HOR_POSITIVE = 0x00000001,<br />
    AW_HOR_NEGATIVE = 0x00000002,<br />
    AW_VER_POSITIVE = 0x00000004,<br />
    AW_VER_NEGATIVE = 0x00000008,<br />
    AW_CENTER = 0x00000010,<br />
    AW_HIDE = 0x00010000,<br />
    AW_ACTIVATE = 0x00020000,<br />
    AW_SLIDE = 0x00040000,<br />
    AW_BLEND = 0x00080000<br />
}<br />
<br />
    ...<br />
<br />
[STAThread]<br />
static void Main()<br />
{<br />
    Application.EnableVisualStyles();<br />
    Application.SetCompatibleTextRenderingDefault(false);<br />
<br />
    Main_Form main = new Main_Form();<br />
            <br />
    AnimateWindow(main.Handle, 250, (uint)AnimateWindowFlags.AW_VER_NEGATIVE |<br />
                  (uint)AnimateWindowFlags.AW_CENTER);<br />
<br />
    Application.Run(main);<br />
}


Any help is appreciated. Laugh | :laugh:
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 
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 

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.