Jump to content

(solved) WinGetstate Help


MattHiggs
 Share

Recommended Posts

Hey all.  I have a multiple GUI script that I have written, and I am trying to configure a hotkey shortcut for a function only when a particular one of those forms is enabled and visible.  To do this, in the function call, I use the handle as the variable used to create the form using GUICreate.  The form, by default when the application launches, is disabled and hidden.  I then use WinGetState get the state of the window, then perform a BitAnd operation to determine if it is either hidden or disabled.  But for some reason, when testing this, when the BitAnd is set to check if form is visible, the function always launches, even when it has not been set with GUISetState.

HotKeySet ( "^{LEFT}", "PreviousValue" )
HotKeySet ( "^{RIGHT}", "NextValue" )
$Form2 = GUICreate("Form2", 300, 350, 433, 149, BitOR($GUI_SS_DEFAULT_GUI, $DS_SETFOREGROUND), $WS_EX_TOPMOST, $Form1_1)
$dummy = GUICtrlCreateDummy()
$dummy2 = GUICtrlCreateDummy()
;Dim $AccelKeys[1][2]=[ ["z", $dummy] ]
;GUISetAccelerators($AccelKeys, $Form2)
$ListView2 = GUICtrlCreateListView("Data|Value", 0, 0, 300, 240, -1, BitOR($WS_EX_CLIENTEDGE, $LVS_EX_FULLROWSELECT))
GUICtrlSendMsg(-1, $LVM_SETCOLUMNWIDTH, 0, 150)
GUICtrlSendMsg(-1, $LVM_SETCOLUMNWIDTH, 1, 150)
Global $Button16 = GUICtrlCreateButton("Start", 216, 264, 49, 49, $BS_DEFPUSHBUTTON)
GUICtrlSetCursor(-1, 0)
Global $Button17 = GUICtrlCreateButton("Back", 64, 264, 49, 49)
GUICtrlSetCursor(-1, 0)
$Button25 = GUICtrlCreateButton("", 136, 264, 49, 49, $BS_ICON)
GUICtrlSetImage(-1, $path & "\1_ClipboardHelpAndSpell.ico", -1)
GUICtrlSetCursor(-1, 0)
Func PreviousValue ()
    $staate = WinGetState ( $Form2 )
    If Not BitAND ( $staate, 2 ) Then
        $index = _GUICtrlListView_GetSelectedIndices ( $ListView2, False )
        If Int ( $index ) = 0 Then
#Region --- CodeWizard generated code Start ---
;MsgBox features: Title=Yes, Text=Yes, Buttons=OK, Icon=Critical, Timeout=2 ss
If Not IsDeclared("iMsgBoxAnswer") Then Local $iMsgBoxAnswer
$iMsgBoxAnswer = MsgBox($MB_OK + $MB_ICONHAND,"Invalid","You are already at the beginning of the list.",2)
#EndRegion --- CodeWizard generated code End ---
        Else
            $newindex = ( Int ( $index ) ) - 1
            _GUICtrlListView_ClickItem ( $ListView2, $newindex )
        EndIf

    Else

    EndIf
EndFunc
Func NextValue()
    $staate = WinGetState ( $Form2 )
    If Not BitAND ( $staate, 2 ) Then
        $index = _GUICtrlListView_GetSelectedIndices ( $ListView2, False )
        If $index = Int ( _GUICtrlListView_GetItemCount ( $ListView2 ) ) - 1 Then
            #Region --- CodeWizard generated code Start ---
;MsgBox features: Title=Yes, Text=Yes, Buttons=OK, Icon=Critical, Timeout=2 ss
If Not IsDeclared("iMsgBoxAnswer") Then Local $iMsgBoxAnswer
$iMsgBoxAnswer = MsgBox($MB_OK + $MB_ICONHAND,"Invalid","You are already at the end of the list.",2)
#EndRegion --- CodeWizard generated code End ---
        Else
            $newindex = ( Int ( $index ) ) + 1
            _GUICtrlListView_ClickItem ( $ListView2, $newindex )
        EndIf

    Else

    EndIf
EndFunc

 

Edited by MattHiggs
Link to comment
Share on other sites

Use Accelerator keys instead of hotkeys.

If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.
Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag Gude
How to ask questions the smart way!

I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from.

Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays.  -  ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script.  -  Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label.  -  _FileGetProperty - Retrieve the properties of a file  -  SciTE Toolbar - A toolbar demo for use with the SciTE editor  -  GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI.  -   Latin Square password generator

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...