|
-
Jan 8th, 2000, 07:49 PM
#1
Thread Starter
Hyperactive Member
Hi,
I use Internet Explorer to surf. When I type an address in the address bar that address is saved so I can just click the drop down menu and the address will still be there. I would like to remove all the addresses that are there because I don't visit the sites any more. Does anybody know where the addresses are saved to so I can remove them?
Thanks
-
Jan 8th, 2000, 09:44 PM
#2
Lively Member
Hi Rino_2,
I don't know where the addresses are saved, but if you select Tools...Internet Options and click Clear History, ALL of the addresses in your address bar will be removed.
HTH.
Chris
-
Jan 9th, 2000, 01:18 AM
#3
Thread Starter
Hyperactive Member
-
Jan 9th, 2000, 01:32 AM
#4
Guru
Does anyone know an API to clear the history and temp internet files in IE?
Thanks
-
Jan 9th, 2000, 07:27 AM
#5
New Member
I believe KILLing all the files in the \windows\history\ and \windows\temporary internet files\ will wipe the history and temporary internet files. Please note that this is untested, and will delete all cookies unlike Internet Explorer, who keeps the cookies unless they are expired.
------------------
-------------------------
Mitch
Visual Basic Programmer
[email protected]
Visit my homepage
-
Sep 9th, 2000, 07:30 AM
#6
_______
<?>
Code:
'to delete the history and temp internet files.
'copy the 2 lines below into a notepad file and save it as cleaner.bat
'to save as bat you need to put it in quotes save as "Cleaner.bat"
'DELTREE /Y C:\WINDOWS\HISTORY\*.*
'DELTREE /Y C:\WINDOWS\TEMPOR~1\*.*
'
'to close the dow window when done use the Environ("COMSPEC") functio
'this will find the command com no matter where stored on system
'this is your form code
Option Explicit
Private Declare Function ShellExecute Lib _
"shell32.dll" Alias "ShellExecuteA" _
(ByVal hwnd As Long, ByVal lpOperation As String, _
ByVal lpFile As String, ByVal lpParameters As String, _
ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long
'Use this line in click event (substitute the URL for your own):
'where ever you put the file cleaner.bat
'call the bat file
Private Sub Command1_Click()
Dim h As Long
h = Shell(Environ("COMSPEC") & " /C C:\Cleaner.bat")
DoEvents
End Sub
"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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|