Results 1 to 6 of 6

Thread: How do access the windows registry to obtain the history of used/open applications

  1. #1

    Thread Starter
    Addicted Member
    Join Date
    Sep 2000
    Location
    Atlanta, GA
    Posts
    177

    Talking

    How do access and activate the windows registry to obtain the history of previously used/open applications?
    212 will lead you to the truth

  2. #2
    Lively Member
    Join Date
    Sep 2000
    Location
    NC, USA
    Posts
    102

    Unhappy I am not 150% sure but ...

    I am almost 99.9% sure that a history is not maintained in the registry by Windows. You can probably find or write an application to log in the registry when applications are run but it is not done automatically,

    Sorry,
    KillemAll

  3. #3

    Thread Starter
    Addicted Member
    Join Date
    Sep 2000
    Location
    Atlanta, GA
    Posts
    177
    It has to be. The document feature under the start menu keeps a record of programs opened. But do you have any idea of how to implement your idea?
    212 will lead you to the truth

  4. #4
    Guest
    That is all found in the C:\Windows\Recent folder. You can list that like this:

    Code:
    'Needed:  Command Button, Listbox
    
    Private Sub Command1_Click()
        Dim FileFinder
        List1.Clear
        FileFinder = Dir("C:\Windows\Recent\")
        Do Until FileFinder = ""
        List1.AddItem LCase(FileFinder)
        FileFinder = Dir
        Loop
    End Sub

  5. #5
    Lively Member
    Join Date
    Sep 2000
    Location
    NC, USA
    Posts
    102

    Unhappy Oh, hehe

    Not quite the same as "history of previously used/open applications" but none the less. Looks like Mr. Gates has you covered there.

  6. #6

    Thread Starter
    Addicted Member
    Join Date
    Sep 2000
    Location
    Atlanta, GA
    Posts
    177

    Talking

    Thanks guys. If you find anymore information on the subject, don't hesitate to post. Thanks.
    212 will lead you to the truth

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