Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: Leoncito
  • Order by date
  1. Leoncito

    Me.Hide does not hide me

    i think, if you remove the line Me.Hide in the load event, p`robably you have the solution. remember, in the load event you execute the code for LOAD and not for SHOW the form, if you call an event who refers to the form, it will be visible.
  2. Leoncito

    enabling a command only after text boxes are filled

    you can try use the Validate event for each textbox, and need a boolean variable to enable the command Set the TabStop property for the textboxes to True and the TabIndex property: Private Form_Load() Text1.TabIndex=0 Text2.TabIndex=1 Text3.TabIndex=2 End Sub Private Sub...
  3. Leoncito

    Help with Class Module in VB 6.0

    if you want to know how to use the visual basic classes refer to MSDN Cd or check the site: www.mnicrosoft.com/msdn

Part and Inventory Search

Back
Top