*Lysander*
2008-11-02 23:25:42 UTC
//////////////////////////////// see line below
////////////////////////////////////////////////
f.l = new listbox(f) //how do I make the listbox wider
programaticaly
//////////////////////////////////////////////////////////////////////////////////////////////////////////
I am not sure what you mean by "wider".////////////////////////////////////////////////
f.l = new listbox(f) //how do I make the listbox wider
programaticaly
//////////////////////////////////////////////////////////////////////////////////////////////////////////
If you want to increase the size to the right, you can just do
f.l.width += 50
(if your form's metric is set to pixel, this will increase size by 50
pixel to the right)
something similar should work for the height:
f.l.height += 50