Results 1 to 4 of 4

Thread: FileBox

  1. #1

    Thread Starter
    _______ HeSaidJoe's Avatar
    Join Date
    Jun 1999
    Location
    Canada
    Posts
    3,946

    Cool

    I am deleting files via a listing in a filebox
    How do I highlite the 1st item..
    I delete the 1st item on click
    then I want to highlite(select) the 1st one
    remaining in my filelist box

    2> if I delete the last item what
    property of the listbox tells me
    it is depleted...
    "A myth is not the succession of individual images,
    but an integerated meaningful entity,
    reflecting a distinct aspect of the real world."

    ___ Adolf Jensen

  2. #2
    Guest
    Code:
    File1.listindex = 0
    That what you want?

  3. #3
    Addicted Member JasonGS's Avatar
    Join Date
    May 2000
    Location
    California
    Posts
    155

    Arrow

    Is this what you're talking about?
    Code:
    Private Sub Command1_Click()
        With File1
            .Refresh
            .ListIndex = 0
        End With
    End Sub

  4. #4

    Thread Starter
    _______ HeSaidJoe's Avatar
    Join Date
    Jun 1999
    Location
    Canada
    Posts
    3,946
    Got it..thanks
    "A myth is not the succession of individual images,
    but an integerated meaningful entity,
    reflecting a distinct aspect of the real world."

    ___ Adolf Jensen

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width