Automate textboxes

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Ali Rizwan
    Banned
    Contributor
    • Aug 2007
    • 931

    Automate textboxes

    Hello Every body.

    I want something like combo boxes with textboxes

    If i will press w records associated with w appears when i press w again the second record associted with w appears how would i do this .
    Thanks in dvance
  • Dave Siegel
    New Member
    • Feb 2007
    • 42

    #2
    Code:
    Private Sub Combo1_KeyUp(KeyCode As Integer, Shift As Integer)
    text1.text = combo1.text
    End Sub
    Not sure what you want but this is the simplest version on what to use.

    Comment

    • Ali Rizwan
      Banned
      Contributor
      • Aug 2007
      • 931

      #3
      Originally posted by Dave Siegel
      Code:
      Private Sub Combo1_KeyUp(KeyCode As Integer, Shift As Integer)
      text1.text = combo1.text
      End Sub
      Not sure what you want but this is the simplest version on what to use.
      Thanks a lot i ll try it i think it will work

      Comment

      Working...