Results 1 to 6 of 6

Thread: 2 Sweet Enums for System messages and window flags

Threaded View

  1. #1

    Thread Starter
    Addicted Member spyk3's Avatar
    Join Date
    Apr 2009
    Location
    Dothan, AL
    Posts
    218

    2 Sweet Enums for System messages and window flags

    Just some nice enums i came across that could help ALOTA ppl in ALOTA places

    SWP Flags Code:
    1. <Flags()> Public Enum SWP
    2.         SWP_NOSIZE = &H1
    3.         SWP_NOMOVE = &H2
    4.         SWP_NOZORDER = &H4
    5.         SWP_NOREDRAW = &H8
    6.         SWP_NOACTIVATE = &H10
    7.         SWP_FRAMECHANGED = &H20  ' The frame changed: send WM_NCCALCSIZE
    8.         SWP_SHOWWINDOW = &H40
    9.         SWP_HIDEWINDOW = &H80
    10.         SWP_NOCOPYBITS = &H100
    11.         SWP_NOOWNERZORDER = &H200  ' Don't do owner Z ordering
    12.         SWP_NOSENDCHANGING = &H400  ' Don't send WM_WINDOWPOSCHANGING
    13.         SWP_DEFERERASE = &H2000
    14.         SWP_ASYNCWINDOWPOS = &H4000
    15.     End Enum

    NOTE: Added Form with full Windows Message Enum in it, it's VERY long
    Attached Files Attached Files
    Last edited by spyk3; Mar 16th, 2010 at 03:28 PM. Reason: Adding Full WM enum

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width