[CLOSED] New build released (1.3.14)

Closed
0
0

We have released a new build of Wisej.

Find it at https://wisej.com/builds

or use the AutoUpdate tool.

Best regards

Frank

  • You must to post comments
0
0

Awesome. Found a bug: In details view, changing ListView.SelectedIndex programmatically does not fire the ListView.SelectedIndexChanged event.

A workaround is to call the event manually:

lvConfigTypes.SelectedIndex=0
lvConfigTypes_SelectedIndexChanged(Me, Nothing)
  • Luca (ITG)
    ListView.SelectedIndex is read-only. How do you change it? There is no setter.
  • Luca (ITG)
    In VB.NET lvConfigTypes.SelectedIndex=0 may be compiled as an equal (==) comparison instead?
  • Andrew Niese
    My mistake, I was looking at a ComboBox.SelectedIndex with similar name. I set the ListView index by lvConfigTypes.items(0).Selected = True. Andrew Gerdel reported the same issue.
  • You must to post comments
Showing 1 result