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...
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...
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...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.