dualshock03
Well-known member
- Joined
- Jan 28, 2007
- Messages
- 105
- Programming Experience
- 1-3
kindly fix..
not working to what im expected..
i have a panel which in runtime would slide to show it.. but the animation seems not visible...
not working to what im expected..
i have a panel which in runtime would slide to show it.. but the animation seems not visible...
VB.NET:
Dim intanimate As Integer
Private Sub btn_delete_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btn_delete.Click
Me.Label7.Text = "Delete Criminal Record"
PanelDelete.Visible = True
For intanimate = 0 To 430 Step 1
PanelDelete.Height = intanimate
GroupBox1.Height = 198
GroupBox1.Visible = True
Next
End Sub