Jump to content

Recommended Posts

Posted

I'm having a little difficulty getting beyond this error with the script below:

C:\.....\Include\GuiListView.au3 (543) : ==> Array variable has incorrect number of subscripts or subscript dimension range exceeded.:
DllStructSetData($tBuffer, "Text", $aItems[$iI][0])
DllStructSetData($tBuffer, "Text", ^ ERROR

Can someone point me in the right direction? Sample Lua script in spoiler.

#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <GUIListBox.au3>
#include <WindowsConstants.au3>
#include <String.au3>
#include <Array.au3>
#include <File.au3>
#include <GuiListView.au3>

;Opt('GuiOnEventMode', 1) ; prevents application from exiting ??

$Form1_1 = GUICreate("Script Parser", 1001, 801, -1, -1)
$Button1 = GUICtrlCreateButton("Open File", 16, 24, 91, 25)
$Button2 = GUICtrlCreateButton("Parse File", 125, 24, 91, 25)
$Button3 = GUICtrlCreateButton("{undefined}", 234, 24, 91, 25)
$Button4 = GUICtrlCreateButton("{undefined}", 343, 24, 91, 25)
$Button5 = GUICtrlCreateButton("{undefined}", 452, 24, 91, 25)
$Button6 = GUICtrlCreateButton("{undefined}", 561, 24, 91, 25)
$Button7 = GUICtrlCreateButton("{undefined}", 670, 24, 91, 25)
$Button8 = GUICtrlCreateButton("Save Output", 779, 24, 91, 25)
$Button9 = GUICtrlCreateButton("Exit", 888, 24, 91, 25)
$List1 = GUICtrlCreateList("", 8, 128, 177, 564, -1, $WS_EX_STATICEDGE)
GUICtrlSetData(-1, "")
GUICtrlSetFont(-1, 10, 400, 0, "Courier New")
$Edit1 = GUICtrlCreateEdit("", 200, 128, 793, 633, -1, $WS_EX_STATICEDGE)
GUICtrlSetData(-1, "")
GUICtrlSetFont(-1, 10, 400, 0, "Courier New")
$Label1 = GUICtrlCreateLabel("{empty}", 10, 700, 200, 27)
GUICtrlSetFont(-1, 14, 400, 0, "Calibri")
GUISetState(@SW_SHOW)

GetFunctions() ; Assign to button 2

While 1
$nMsg = GUIGetMsg()
Switch $nMsg
  Case $GUI_EVENT_CLOSE
   Exit
EndSwitch
WEnd

Func OpenFile()
EndFunc

Func GetFunctions()
Local $aFileName = FileOpenDialog("Select a file", @ScriptDir & "\", "(*.lua)", 0)
Local $aArray = FileRead($aFileName)
Local $aFunctions = _StringBetween($aArray, "Function ", "(")
_ArrayDisplay($aFunctions)
_GUICtrlListView_AddArray($List1,$aFunctions) ; ERROR
EndFunc

Func _ListViewEvent()
    For $i = 0 To $List1[0]
        If @GUI_CtrlId = $List1[$i] Then ExitLoop
    Next
    GUICtrlSetData($Label1, GUICtrlRead($List1[$i]))
EndFunc

Func _Exit()
    Exit
EndFunc

  Reveal hidden contents

Agreement is not necessary - thinking for one's self is!

My-Colors.jpg

cuniform2.gif

Posted (edited)

Well, one thing I can see right away is that you're using a ListView function on a ListBox. GUICtrlCreateList makes a listbox, not a listview.

EDIT: I also forgot to mention, _GUICtrlListView_AddArray requires a 2D array, you're sending it a 1D array.

Edited by BrewManNH

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!

  Reveal hidden contents

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

  • Moderators
Posted

Fossil Rock,

You are trying to use _GUICtrlListView_AddArray to add items to a control created with GUICtrlCreateList. Not the same type of control at all. ;)

And even if it was, the array format is wrong - you need a 2D array. :)

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

  Reveal hidden contents

 

Posted

First of all, thanks for the replies.

3 days later and this is as close as I've gotten. The Scrollbar shows up like there's data in the control, but no data. Does the control need to be refreshed somehow to show the data?

#include <String.au3>
#include <Array.au3>
#include <GUIConstantsEx.au3>
#include <ListViewConstants.au3>
#include <WindowsConstants.au3>
#include <GuiListView.au3>
$Form1 = GUICreate("Form1", 615, 438, -1, -1)
$ListView1 = GUICtrlCreateListView("", 24, 24, 250, 390)
GUISetState(@SW_SHOW)
Local $aFileName = @ScriptDir & "\Script.lua" ; save the sample script from the OP as Script.lua in the script dir
Local $aFileLines = FileRead($aFileName)
Local $aFunctions = _StringBetween($aFileLines, "Function ", "(")

Local $aArray[UBound($aFunctions)][1]

For $i = 0 To UBound($aFunctions) -1
  $aArray[$i][0] = $aFunctions[$i]
Next

Sleep(1000)
_GUICtrlListView_AddArray(GUICtrlGetHandle($ListView1), $aArray)

While 1
$nMsg = GUIGetMsg()
Switch $nMsg
  Case $GUI_EVENT_CLOSE
   Exit
EndSwitch
WEnd

  Reveal hidden contents
Posted Image

Agreement is not necessary - thinking for one's self is!

My-Colors.jpg

cuniform2.gif

  • Moderators
Posted

Fossil Rock,

It seems that _GUICtrlListView_AddArray only works on ListViews created with the UDF - looking inside the function shows it uses the UDF functions to add the items. So you need to create the ListView like this: :)

#include <string.au3>
#include <array.au3>
#include <guiconstantsex.au3>
#include <listviewconstants.au3>
#include <windowsconstants.au3>
#include <guilistview.au3>

$Form1 = GUICreate("Form1", 615, 438, -1, -1)

$ListView1 = _GUICtrlListView_Create($Form1, "", 24, 24, 250, 390) ; <<<<<<<<<<<<<<<<<
_GUICtrlListView_SetExtendedListViewStyle($ListView1, BitOR($LVS_EX_GRIDLINES, $LVS_EX_FULLROWSELECT)) ; <<<<<<<<<<<<<<<<<
_GUICtrlListView_InsertColumn($ListView1, 0, "", 250) ; <<<<<<<<<<<<<<<<<

GUISetState()

Local $aFileName = @ScriptDir & "Script.lua" ; save the sample script from the OP as Script.lua in the script dir
Local $aFileLines = FileRead($aFileName)
Local $aFunctions = _StringBetween($aFileLines, "Function ", "(")

Local $aArray[UBound($aFunctions)][1]

For $i = 0 To UBound($aFunctions) - 1
    $aArray[$i][0] = $aFunctions[$i]
Next

_GUICtrlListView_AddArray($ListView1, $aArray)

While 1
    $nMsg = GUIGetMsg()
    Switch $nMsg
        Case $GUI_EVENT_CLOSE
            Exit
    EndSwitch
WEnd

It works for me now. ;)

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

  Reveal hidden contents

 

Posted

Does the data show up in the ListView for you? Must be something wrong with my computer.

Posted Image

Agreement is not necessary - thinking for one's self is!

My-Colors.jpg

cuniform2.gif

  • Moderators
Posted

Fossil Rock,

Certainly does. :)

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

  Reveal hidden contents

 

Posted

_GUICtrlListView_AddArray will work with a listview created with the native function, I changed the script M23 posted to use the native function and it worked ok for me. By the way, the script worked both ways for me, with and without the UDF created ListView control.

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!

  Reveal hidden contents

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

  • 4 months later...
Posted

Hey ;)

I have a similar Problem.

But i know i have a 1D Array and for the ListView_AddArray i need a 2D. But i have not a 2D.

Which command can i use to write an 1D Array in a ListView?

  • Moderators
Posted

Spenhouet,

Why do you need a function? Why not just loop through the array and add each item individually? ;)

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

  Reveal hidden contents

 

Posted

  On 6/5/2012 at 11:41 AM, 'Melba23 said:

Spenhouet,

Why do you need a function? Why not just loop through the array and add each item individually? :)

M23

It figures. Melba you are my hero today :)

This works ;) thx to you

$testlist = _GUICtrlListView_Create($Form1, "", 20, 15, 350, 75, BitOR($WS_HSCROLL, $WS_VSCROLL, $WS_BORDER, $LVS_REPORT, $LVS_NOCOLUMNHEADER), 0)
GUICtrlSetFont(-1, 12, 400, 0, "Arial Narrow")
_GUICtrlListView_AddColumn($testlist, "", 330)
Global $aIndex = addtomenu()
_ArrayPush($aIndex, "")
local $k = 0
While $aIndex[$k] <> ""
   _GUICtrlListView_AddItem($testlist, $aIndex[$k], 0)
   $k += 1
WEnd

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
×
×
  • Create New...