Hi guys,
I've been having enormous problems trying to get ListBoxes to size correctly.
startblue "xxx","xxxxxx"
tabsgadget=createTabs(0,0,600,400,0)
listbox1=createlistbox(220,10,200,84,tabsgadget)
listbox2=createlistbox(10,10,200,83,tabsgadget)
for a=1 to 100
addItem listbox1,str$(a)
addItem listbox2,str$(100-a)
next a
do
loop
In this example, the list boxes are sized at 83 pixels tall, and 84 pixels tall; but as u can see in the picture below there is 2 lines of text difference between the 2.
This is making it very tricky to get the layout of my UI sorted out.
Am I missing something? Have I done something wrong? or is this just a Windows 7 issue?