Hello,
Could any one tell me wht are intergral height,
Newindex and item data property and how do they work
Plz give me examples
Thanks
Printable View
Hello,
Could any one tell me wht are intergral height,
Newindex and item data property and how do they work
Plz give me examples
Thanks
IntegralHeight, it resizes by the height of each item. If it's off, it sets the height exactly it is given. Just try how it works, here's somekind of example:
NewIndex tells the next free index I think, but it really has no use, because new items have automatically the last index.Code:'Create new form and insert a listbox
Private Sub Form1_Resize ()
List1.Move 0, 0, ScaleWidth, ScaleHeight
End Sub
Private Sub List1_MouseDown (Button As Integer, Shift As Integer, X As Single, Y As Single)
List1.IntegralHeight = Not List1.IntegralHeight
End Sub
I haven't ever needed item data and so I can't help with it. Hopefully someone else can tell.
[Edited by MerryVIP on 11-06-2000 at 06:19 AM]