Jump to content

Getting SQLite Working


Athfar
 Share

Recommended Posts

Hi,

I am learning AutoIt, and I find this "SQlite Browser" a nice example to try out my skills this far. Although the last addition to this subject is now exactly 8 years old!

I have cut out a part that does not work for me: my question, simply "why doesn't this work?". I get the message: "0 item(s) selected". And there is no text read, as a consequence.

; select from a list

#include <GUIConstants.au3>
#include <GuiListbox.au3>

$gui_Form = GUICreate("SQLite Browser test", 622, 460, 199, 135, BitOR($GUI_SS_DEFAULT_GUI, $WS_SIZEBOX, $WS_MAXIMIZEBOX))
$gui_Tables = GUICtrlCreateList("", 8, 8, 121, 318, -1, $WS_EX_CLIENTEDGE)
$hGui_Tables = ControlGetHandle($gui_Form, "", $gui_Tables)
_GUICtrlListBox_AddString($hGui_Tables, "Item 1")
_GUICtrlListBox_AddString($hGui_Tables, "Item 2")
_GUICtrlListBox_AddString($hGui_Tables, "Item 3")

$btn = GUICtrlCreateButton("&Test", 8, 330, 121)

GUISetState(@SW_SHOW)

While 1
    $msg = GUIGetMsg()
    Select
        Case $msg = $GUI_EVENT_CLOSE
            ExitLoop
        Case $msg = $btn
            $a = _GUICtrlListBox_GetSelItemsText($hGui_Tables)
            MsgBox(0, "", $a[0] & " item(s) selected")
    EndSelect
WEnd

Can someone help? What is wrong with this code?

Link to comment
Share on other sites

This is not a SQLite specific problem. Test this:

; select from a list

#include <GUIConstants.au3>
#include <GuiListbox.au3>

$gui_Form = GUICreate("SQLite Browser test", 622, 460, 199, 135, BitOR($GUI_SS_DEFAULT_GUI, $WS_SIZEBOX, $WS_MAXIMIZEBOX))
$gui_Tables = GUICtrlCreateList("", 8, 8, 121, 318, BitOR($LBS_STANDARD, $LBS_EXTENDEDSEL), $WS_EX_CLIENTEDGE)
$hGui_Tables = ControlGetHandle($gui_Form, "", $gui_Tables)
_GUICtrlListBox_AddString($hGui_Tables, "Item 1")
_GUICtrlListBox_AddString($hGui_Tables, "Item 2")
_GUICtrlListBox_AddString($hGui_Tables, "Item 3")

$btn = GUICtrlCreateButton("&Test", 8, 330, 121)

GUISetState(@SW_SHOW)

While 1
    $msg = GUIGetMsg()
    Select
        Case $msg = $GUI_EVENT_CLOSE
            ExitLoop
        Case $msg = $btn
            $a = _GUICtrlListBox_GetSelItemsText($hGui_Tables)
            MsgBox(0, "", $a[0] & " item(s) selected")
    EndSelect
WEnd

In 8 years AutoIt UDFs are changing in syntax. In the actual stable you can also use the ControlID ($gui_Tables) instead of the Handle ($hGui_Tables) for using the functions of GuiListBox.au3.

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