Jump to content

_ArrayDisplay(); buggy with v3.2.4.9


Recommended Posts

Looks like it's not using MSGBOX() anymore (as in 3.2.2.0)...

Calling this function now is generating a large dialog with a table control that is not resized properly (it's smashed to the upper left corner of the dialog).

Sean Shrum :: http://www.shrum.net

All my published AU3-based apps and utilities

'Make it idiot-proof, and someone will make a better idiot'

 

Link to comment
Share on other sites

H,

1. Not here; what version of Windows? It is just a ListView;

2. Can you post your Array to Display and your script example?

3. Are other listViews working on your machine? -give example of working script with listView to compare and I'll have a look at the difference

Best, Randall

Link to comment
Share on other sites

H,

1. Not here; what version of Windows? It is just a ListView;

2. Can you post your Array to Display and your script example?

3. Are other listViews working on your machine? -give example of working script with listView to compare and I'll have a look at the difference

Best, Randall

1. Vista Ultimate

2. Oddly, the display in my test script works. But in my project I get a smashed table.

3. See #2

Here's my test script which works (it's actually my _WikiLookup() function mod'ed a bit for extracted use), but this same code in my project results in a smashed dialog. There's nothing in my project that would cause this (I never use listviews and I'm not doing any GUI manips...yet):

#include <Array.au3>
$sArtist = "Calloway, Cab"
if stringinstr($sArtist, ", ") Then
    $aTemp = StringSplit($sArtist, ", ")
    _ArrayDisplay($atemp, "")
    $sArtist = $aTemp[3] & " " & $aTemp[1]
EndIf
$sArtist = StringReplace($sArtist, " ", "_")
ConsoleWrite("(_WikiLookup) Launching default browser to: http://en.wikipedia.org/wiki/" & $sArtist & @CRLF)
Run(@ComSpec & " /c start " & "http://en.wikipedia.org/wiki/" & $sArtist)

Sean Shrum :: http://www.shrum.net

All my published AU3-based apps and utilities

'Make it idiot-proof, and someone will make a better idiot'

 

Link to comment
Share on other sites

Hi,

That works here;

can you run the Helfile scripts for

1. _ArrayDisplay

2. GUICtrlCreateListView

we might need to post a bug report on ListView if there is a problem on vista Ultimate? (I am on XP2)

Best, Randall

Link to comment
Share on other sites

Hi,

That works here;

can you run the Helfile scripts for

1. _ArrayDisplay

2. GUICtrlCreateListView

we might need to post a bug report on ListView if there is a problem on vista Ultimate? (I am on XP2)

Best, Randall

PS can you PM me the project with any needed files to run it, or else make a file with the Array contents just before the arraydisplay, and send me that or attach it here?

Best, randall

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