/ Forums / Advansys Formativ / Creating Solutions with Formativ / How can i fill a Listbox with multiple columns?

  • Creator
    Topic
  • #4192
    ManfredS
    Participant

      Hi,
      i would like to fill a Listbox with 3 columns in a form
      e.g.
      column(1) = Subject
      column(2) = Startdate
      column(3) = Enddate

      thanks for help

    • Author
      Replies
    • #7435
      Support 1a
      Participant

        I don’t think you can do this. I suspect a ListView would be a better option. Set its ViewStyle property to vsReport, then use the Columns property to specify the column names.

        Advansys Support

        #7437
        lp_irovetz
        Participant

          Hi,

          Perhaps a clue

          ‘Listviewobj is the object

          Set oItem = ‘Listviewobj.Items.Add
          oItem.Caption = “Subject”
          oItem.SubItems.Add(Startdate)
          oItem.SubItems.Add(Enddate)

          ListBox or Listview is not excel Frown

          L.P. Irovetz
          Arcane GroupWare

          #7436
          Support 1a
          Participant

            Thanks L.P.

            Advansys Support

          Viewing 3 replies - 1 through 3 (of 3 total)
          • You must be logged in to reply to this topic.