Jump to content

Output presentation


shornw
 Share

Recommended Posts

Can anyone suggest a way to present output from an array (with around 50 rows) $array[0] & $array[1] into a window in two columns so that it is 'clean' for the user to view

I probably haven't explained this very well, so if I need to clarify please ask.

Thanks

[font='Comic Sans MS']Eagles may soar high but weasels dont get sucked into jet engines[/font]

Link to comment
Share on other sites

Finally!! Phew!

MikeMan, I would never have done that without your suggestion.

This is how it finally turned out, a bit different but you sure got the idea I had in mind.

$listview = GUICtrlCreateListView( "Item | Name", 10, 10, 750, 800)
  For $Repeat = 1 to ubound($aProperties) -1 Step 1
   GuiCtrlCreateListViewItem($aProperties[$Repeat][0]&"|"& $aProperties[$Repeat][1], $listview)
  Next

Thank you so much.

[font='Comic Sans MS']Eagles may soar high but weasels dont get sucked into jet engines[/font]

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