Welcome to the SRP Forum! Please refer to the SRP Forum FAQ post if you have any questions regarding how the forum works.

GroupPanelVisible property

Setting this property does not immediately apply
I have a right-click option to show/hide this.
If you right-click and hide, as per following code it does not apply the property, until you move the mouse cursor over the group by area, or resize the form.

CASE MESSAGE="HIDE_GROUP"
CALL Set_Property(OLE_DELETED_TABLE,"OLE.GroupPanelVisible",0)

I added an AutoPopulate setting, and this resolves the problem.

CASE MESSAGE="HIDE_GROUP"
CALL Set_Property(OLE_DELETED_TABLE,"OLE.GroupPanelVisible",0)
CALL Set_Property(OLE_DELETED_TABLE,"OLE.AutoPopulate",1)

Comments

  • This will be fixed in the next release. AutoPopulate can be slow because it causes all rows to be reallocated from scratch whereas the new fix simply forces a proper redraw.
  • Excellent, thanks
Sign In or Register to comment.