VBSlip 18_1_2015-16



=================================Slip18_1===========================
Write a VB Program to move a command button by using timer control.
====================================================================================
 


Private Sub Form_Load()

                Timer1.Interval = 1
                Timer1.Enabled = True
               
End Sub

Private Sub Timer1_Timer()
                Command1.Left = Command1.Left + 2
End Sub


1 comment:

  1. Write a VB program, i.e. menu driven that facilitates following task in a hotel
    1. Reserves a room for a date
    2. Cancel the reservation
    3. Checkout, print bill on the checkout
    4. List of all booked rooms.
    Assume that the hotel contains 5 rooms

    write the answer of this

    ReplyDelete

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