select all entries in a list box

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • John E. Fox

    select all entries in a list box

    Dear All,

    Is there a nice way to select every entry in a list box
    without having to click and drag across every line


    Thanks

    John Fox

  • Br@dley

    #2
    Re: select all entries in a list box

    John E. Fox wrote:[color=blue]
    > Dear All,
    >
    > Is there a nice way to select every entry in a list box
    > without having to click and drag across every line
    >
    >
    > Thanks
    >
    > John Fox[/color]

    Yes.

    Look up the .selected method in the help.
    --
    regards,

    Br@dley


    Comment

    • John E. Fox

      #3
      Re: select all entries in a list box

      That's getting closer.
      I now need to count the number of entries.
      Tried .count without success.


      John

      Br@dley wrote:[color=blue]
      > John E. Fox wrote:
      >[color=green]
      >>Dear All,
      >>
      >>Is there a nice way to select every entry in a list box
      >>without having to click and drag across every line
      >>
      >>
      >>Thanks
      >>
      >>John Fox[/color]
      >
      >
      > Yes.
      >
      > Look up the .selected method in the help.[/color]

      Comment

      • John E. Fox

        #4
        Re: select all entries in a list box

        Got it!

        used .listentries


        thanks for the help

        John

        John E. Fox wrote:[color=blue]
        > That's getting closer.
        > I now need to count the number of entries.
        > Tried .count without success.
        >
        >
        > John
        >
        > Br@dley wrote:
        >[color=green]
        >> John E. Fox wrote:
        >>[color=darkred]
        >>> Dear All,
        >>>
        >>> Is there a nice way to select every entry in a list box
        >>> without having to click and drag across every line
        >>>
        >>>
        >>> Thanks
        >>>
        >>> John Fox[/color]
        >>
        >>
        >>
        >> Yes.
        >>
        >> Look up the .selected method in the help.[/color]
        >
        >[/color]

        Comment

        Working...