VBSlip 19_1_2015-16



=================================Slip19_1===================================
Write a VB program to design progress bar using Timer control. Once process is completed new form should get open and display message “Processed Successfully”               .==========================================================================
 

Private Sub Timer1_Timer()

                ProgressBar1.Value = ProgressBar1.Value + 10
                If ProgressBar1.Value = 100 Then
                                Form2.Show
                                Timer1.Enabled = False
                End If
End Sub
 




 

No comments:

Post a Comment

Note: only a member of this blog may post a comment.