I have a form, the only thing in this form is a rectangle and 2 buttons. I want the rectangle to changes widths at the click of these buttons. Currently I have this set for "on click" for button 1.
Private Sub cmdOpenReport_Click()
SizableBox.Width = 1.875
Me.Repaint
End Sub
When I click it the rectangle goes flat. How can I make this work?
Thank you!
Private Sub cmdOpenReport_Click()
SizableBox.Width = 1.875
Me.Repaint
End Sub
When I click it the rectangle goes flat. How can I make this work?
Thank you!