Stupid question: How can i put two listbox side by side ?

  • Thread starter Thread starter momo
  • Start date Start date
M

momo

Hello everybody,

i have a little question: How can i put two listbox side by side ?
if i add one listbox, it goes under the first one ?
There is space enough, i put a width...

A little hint ?

thank you in advance,

EL
 
Hello everybody,

i have a little question: How can i put two listbox side by side ?
if i add one listbox, it goes under the first one ?
There is space enough, i put a width...

A little hint ?

thank you in advance,

EL

Check the html layout, there should be something like <div></div> or
<br /> to break to the new line.
 
You can also do it the old school way by using a "table".

Keep in mind that vs2005 had an "Absolute Positioning" and in vs2008 it was
removed from the menu and you shouldnt use it as you should align and
distribute your controls using css or things like Div's or other like momo
mentioned.

Miro

Hello everybody,

i have a little question: How can i put two listbox side by side ?
if i add one listbox, it goes under the first one ?
There is space enough, i put a width...

A little hint ?

thank you in advance,

EL

Check the html layout, there should be something like <div></div> or
<br /> to break to the new line.
 
Back
Top