>> multi column listbox

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • =?Utf-8?B?Sm9uYXRoYW4=?=

    #1

    >> multi column listbox

    Hi I so new to vb.net that the paints still wet...

    I would like to load a listbox (as I would do using vba). The properties
    show multicolumn = true
    column width = 300

    How do I set the individual column widths?

    listbox1.add(ne wItem) appends a new item to my list.
    How do I add the additional column for each list item?

    Any ideas or suggestions appreciated :-)

    --
    Many thanks
    Jonathan Parminter
  • schneider

    #2
    Re: >> multi column listbox

    I think they must be the same size. Maybe try using a DataGrid...

    Schneider

    "Jonathan" <Jonathan@discu ssions.microsof t.comwrote in message
    news:DC0447AD-B35D-482B-ADFC-B8A75B494BB5@mi crosoft.com...
    Hi I so new to vb.net that the paints still wet...
    >
    I would like to load a listbox (as I would do using vba). The properties
    show multicolumn = true
    column width = 300
    >
    How do I set the individual column widths?
    >
    listbox1.add(ne wItem) appends a new item to my list.
    How do I add the additional column for each list item?
    >
    Any ideas or suggestions appreciated :-)
    >
    --
    Many thanks
    Jonathan Parminter

    Comment

    • Stephany Young

      #3
      Re: &gt;&gt; multi column listbox

      If, as I think you are, referring to some of the features of ListBox and
      ComboBox controls in MS Access, then you need to be aware that those 2
      controls are specific to MS Access.

      The multicolumn behaviour of the standard ListBox control means that items
      are listed down until the visible part of the list area is 'full' and then
      the next items 'flow' into the next column. It is not analoguous with a
      'grid'.

      If you need functionality analogous with a 'grid' then you need to consider
      using the ListView or DataGridView controls.


      "Jonathan" <Jonathan@discu ssions.microsof t.comwrote in message
      news:DC0447AD-B35D-482B-ADFC-B8A75B494BB5@mi crosoft.com...
      Hi I so new to vb.net that the paints still wet...
      >
      I would like to load a listbox (as I would do using vba). The properties
      show multicolumn = true
      column width = 300
      >
      How do I set the individual column widths?
      >
      listbox1.add(ne wItem) appends a new item to my list.
      How do I add the additional column for each list item?
      >
      Any ideas or suggestions appreciated :-)
      >
      --
      Many thanks
      Jonathan Parminter

      Comment

      Working...