Jump to content

window not scrollable


svss
 Share

Recommended Posts

Hi there,

i try to create a checkbox window which seems to work but i am not able to scroll

further down.Does anyone have an idea?

Also if i click"save"in my script i would like to close the GUI amd save to the specified

text file but so far no success either.

Any hint much appreciated.

#include <GUIConstants.au3>
#include <File.au3>
#Include <Array.au3>


Global $aArray
_FileReadToArray('C:\NTRESKIT\users.txt', $aArray)
If @error Then
    MsgBox(0x1, 'Error', "_FileReadToArray('users.txt', $aArray)")
    Exit
EndIf

GUICreate('Users to Move',400,500,-1,-1,$WS_VSCROLL)
Global $checkbox[$aArray[0] + 1]
For $i = 1 To $aArray[0]
    $checkbox[$i] = GUICtrlCreateCheckbox($aArray[$i], 20, 18 * $i)
Next
$button_process = GUICtrlCreateButton('&Save', 250, 350, 80)
$button_exit = GUICtrlCreateButton('E&xit', 250, 400, 50)
GUISetState(@SW_SHOW )
While 1
    $msg = GUIGetMsg()
    Select
        Case $msg = $GUI_EVENT_CLOSE
            Exit
        Case $msg = $button_exit
            Exit
        Case $msg = $button_process
            For $i = 1 To $aArray[0]
                ; Check state of checkboxes and do conditional action
                If GUICtrlRead($checkbox[$i]) = $GUI_CHECKED Then
                    $file = FileOpen("C:\NTRESKIT\members3.txt",1)

; Check if file opened for writing OK
If $file = -1 Then
    MsgBox(0, "Error", "Unable to open file.")
    Exit
EndIf

FileWrite($file,$aArray[$i] &@CRLF  )

FileClose($file) 

endif
next
EndSelect
wend
exit

users.txt

Edited by Larry
Link to comment
Share on other sites

$WS_VSCROLL is not meant to be used with GUI windows but with controls like EditBox and ListView.


Time you enjoyed wasting is not wasted time ......T.S. Elliot
Suspense is worse than disappointment................Robert Burns
God help the man who won't help himself, because no-one else will...........My Grandmother

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