Results 1 to 40 of 63

Thread: ADO Beginners Tutorial

Threaded View

  1. #10
    Frenzied Member longwolf's Avatar
    Join Date
    Oct 2002
    Posts
    1,343

    Re: ADO Beginners Tutorial

    Quote Originally Posted by vocalmind
    On the tutorial. How to update the text on TEXT box by selecting the list on the COMBO box?
    I haven't looked at that code in a while.
    Change the name of the textbox and combox in the code below so they match the tutorial code.

    VB Code:
    1. Private Sub Combo1_Change()
    2.     Text1.Text = Combo1.Text
    3. End Sub
    4.  
    5. Private Sub Combo1_Click()
    6.     Text1.Text = Combo1.Text
    7. End Sub
    Last edited by longwolf; Sep 11th, 2005 at 08:50 AM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width