|
-
Jul 3rd, 2000, 02:23 AM
#1
Thread Starter
Hyperactive Member
Dear VB users,
Can somebody tell me how to get a ListView object.?
Wich control file (.OCX) do I have to use?
Nice regards,
Michelle.
-
Jul 3rd, 2000, 03:10 AM
#2
transcendental analytic
Common Controls 5 and 6 should contain it
The file Comctl32.ocx should be in registered in your system directory
Use  
writing software in C++ is like driving rivets into steel beam with a toothpick.
writing haskell makes your life easier:
reverse (p (6*9)) where p x|x==0=""|True=chr (48+z): p y where (y,z)=divMod x 13
To throw away OOP for low level languages is myopia, to keep OOP is hyperopia. To throw away OOP for a high level language is insight.
-
Jul 4th, 2000, 07:48 AM
#3
Hyperactive Member
Kedman
Dear Kedman think you can tell me how to wrap this into a list view:
If (loadedcheck) Then Exit Sub
Index = 0
Do
If (Index > 0) Then
Load CheckGDW(Index)
CheckGDW(Index).Top = CheckGDW(Index).Height * Index + CheckGDW(Index).Top
End If
CheckGDW(Index).Visible = True
CheckGDW(Index).Caption = rs!CustomerID
Index = Index + 1
Call rs.MoveNext
Loop Until rs.EOF()
loadedcheck = True
-
Jul 5th, 2000, 01:32 AM
#4
transcendental analytic
rs.EOF()
Well i hope you don't mind that i actually don't know what you're trying to do, what do you mean by wrapping it into a listview?
Use  
writing software in C++ is like driving rivets into steel beam with a toothpick.
writing haskell makes your life easier:
reverse (p (6*9)) where p x|x==0=""|True=chr (48+z): p y where (y,z)=divMod x 13
To throw away OOP for low level languages is myopia, to keep OOP is hyperopia. To throw away OOP for a high level language is insight.
-
Jul 5th, 2000, 03:47 AM
#5
Hyperactive Member
wrap
Well, the above code gives a column of check boxes to the amount in the database so i would like these check boxes inside a list view so i can scroll up and down through the selections incase the database is updated with new customers.
Many thanks
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|