Pleased to annouce the release of Kixforms Verison 2.1.1 (Build 35) available for download from Kixforms web site:

Kixforms Dowload Page

Heres the liner notes for this build:

ListView Object

Added HeaderStyle property to ListView object (write-only). Settings are as follows:
  • 0 = Header hidden
  • 1 = Header visible, but not clickable
  • 2 = Header visible, and clickable
Added Insert method to ListView Item Collection. Usage is as follows:

$Item = $ListView.Items.Insert(index,text)

This creates a new item and inserts it into the collection at the specified index. To add an item to the beginning of this list, specify this:

$Item = $ListView.Items.Insert(0,"John Doe")

To insert an item to the the end of list, specify this:

$Item = $ListView.Items.Insert($ListView.Items.Count,"John Doe")

The previous example performs the same action as Items.Add()

TextBox Object

Added SuperLocked setting to TextBox Locked property. The new settings for locked are as follows:

  • 0 = Unlocked
  • 1 = Locked (user can copy & navigate only)
  • 2 = SuperLocked (user can navigate only)
InputBox Method

Changed InputBox to initially set focus to the text box on startup and to pre-select (highlight) the default string.

Feature Changes & Improvements
  • Much improved sorting of ListView control via ColumnHeader click.
  • The Enabled property for all objects now supports True/False strings.
  • Changed the handling of the Default button and TextBoxes on the same form.
Bug Fixes
  • Fixed filter problem with FileOpenDialog and FileSaveDialog.
  • Fixed ListView FullRowSelect to respond to boolean True/False.
  • Fixed various memory leaks when returning objects from ListView.
  • Fixed RadioButtons on forms that have subforms with child controls.
As always, please feel free to add any comment, questions or feedback into this thread.

[ 19. October 2002, 20:27: Message edited by: Shawn ]