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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Jason92

  1. Jason92

    Simple Query Question

    I am having trouble with a simple query... I am using the QBE grid that looks like this (for example): column1 column2 column3 Animal Color firstName I want to enter in the parameters in the grid to show me all animals except where animal = Dog and color = White. I tried to enter in...
  2. Jason92

    Simple Query Question

    I am having trouble with a simple query... I am using the QBE grid that looks like this (for example): column1 column2 column3 Animal Color firstName I want to enter in the parameters in the grid to show me all animals except where animal = Dog and color = White. I tried to enter in...
  3. Jason92

    Listview Subitems

    I have a more than one listview with different numbers of subitems. I wanted to make this bit of code more dynamic. I can make it work this way: For i = 1 To 4 strTEST= strTEST & ListView1.SelectedItem.SubItems(i) & "--" Next i msgbox strTEST Instead of "For i = 1 to 4" it...
  4. Jason92

    ListView Columns

    Perfect! Thanks!
  5. Jason92

    ListView Columns

    I have a form with a listview in it. I want the values of every column for the itemselected to show up in a message box when the item is double clicked. So far, I can only get the value in column 1 to show up: Private Sub ListView1_dblclick() MsgBox ListView1.SelectedItem End Sub How do I...

Part and Inventory Search

Back
Top