Professional UI Solutions
Site Map   /  Register
 
 

Forum

Please Log In to post a new message or reply to an existing one. If you are not registered, please register.

NOTE: Some forums may be read-only if you are not currently subscribed to our technical support services.

Forums » Elegant Ribbon Tech Support » Bug Collapse All
Subject Author Date
Sven Rutten Aug 28, 2007 - 2:01 PM

New Ribbon, 2 RibbonGroupbox’s, on each one textbox.
Following code:

Private Sub TextBox1_TextChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles TextBox1.TextChanged
If TextBox1.Text = "" Then
RibbonGroup2.Visible = False
Else
RibbonGroup2.Visible = True
End If
End Sub

Ribbongroup2-visible is only changing when I move my mouse...
Tried to use RibbonGroup2.PerformLayout() and RibbonTabPage1.PerformLayout(). Didnt work...

Technical Support Aug 30, 2007 - 11:07 AM

We will check it. Please try the RibbonTabPage1.Invalidate() method.

Sven Rutten Aug 30, 2007 - 12:25 PM

Cool that’s working