Hi,
I want to insert a 32x32 image into the listbox
But images can be good if they are 16x16
How do I set the image in the listbox?
like setting the left margin
I use listbox1.rowpicture (0) = pict1
only good if the image is 16x16
Thanks
Hi,
I want to insert a 32x32 image into the listbox
But images can be good if they are 16x16
How do I set the image in the listbox?
like setting the left margin
I use listbox1.rowpicture (0) = pict1
only good if the image is 16x16
Thanks
use DRAWPICTURE in the CELLBACKGROUND PAINT EVENT and do it yourself
g.drawpicture mypicgture,10,3,32,32, 0,0,mypicture.width,mypicture.height
Increase the Listbox.DefaultRowHeight
Thank you Dave and Alex…