|
-
Sep 28th, 2000, 01:47 PM
#1
Thread Starter
Addicted Member
How do access and activate the windows registry to obtain the history of previously used/open applications?
212 will lead you to the truth
-
Sep 28th, 2000, 02:35 PM
#2
Lively Member
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
-
Sep 28th, 2000, 04:35 PM
#3
Thread Starter
Addicted Member
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
-
Sep 28th, 2000, 04:46 PM
#4
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
-
Sep 28th, 2000, 04:51 PM
#5
Lively Member
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.
-
Sep 28th, 2000, 05:13 PM
#6
Thread Starter
Addicted Member
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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|