PlanetSquires Forums

Support Forums => PlanetSquires Software => Topic started by: Paul Squires on January 14, 2020, 04:13:35 PM

Title: WinFBE Suite 2.0.3 (January 14, 2020)
Post by: Paul Squires on January 14, 2020, 04:13:35 PM
Version 2.0.3 (January 14, 2020)
- Added: ListView property OddRowColorEnabled (True/False).
- Changed: ListView removed property "Sorting" until such time as sorting code is added to the control. In the meantime, use the SortByColumn method.
- Fixed: ListView now draws significantly faster becase only affected changed visible line items invoke a redraw of the ListView only if the BeginUpdate flag is False. Enclosing many ListView row/col changes in BeginUpdate/EndUpdate continues to be the best approach for optimal performance.
- Fixed: Visual Designer code generated for redisplaying closed forms would not correctly show previous statusbar, or toolbar, or mainmenu.
- Fixed: MainMenus with only one defined entry would fail to display in the visual designer when the Menu Editor was closed.
- Fixed: Visual Designer code generated for KeyUp, KeyDown, KeyPress events were not cancelling the key input when e.Handled = True.
- Fixed: Setting StatusBar font via code was not working. Example: frmMain.StatusBar.Font = New wfxFont("Consolas", 10, FontStyles.Bold, FontCharset.Default)

https://github.com/PaulSquires/WinFBE/releases
Title: Re: WinFBE Suite 2.0.3 (January 14, 2020)
Post by: SeaVipe on January 14, 2020, 04:50:32 PM
Thanks, Paul, Early observation wfxControl.inc: For the next release, lines 150, 152 and 158. :0)
Title: Re: WinFBE Suite 2.0.3 (January 14, 2020)
Post by: Paul Squires on January 14, 2020, 04:56:38 PM
hahaha, oh my, I forgot to take out the debug lines  :)
Title: Re: WinFBE Suite 2.0.3 (January 14, 2020)
Post by: SeaVipe on January 14, 2020, 05:20:48 PM
ListView: KeyUp, KeyDown and KeyPress each fire twice. All else appears to function as designed.
Title: Re: WinFBE Suite 2.0.3 (January 14, 2020)
Post by: Paul Squires on January 15, 2020, 03:19:32 PM
Quote from: SeaVipe on January 14, 2020, 05:20:48 PM
ListView: KeyUp, KeyDown and KeyPress each fire twice. All else appears to function as designed.
This was a regression in the WinForms code that I introduced in the last update. It is now fixed. It affected all controls, not just ListView.