Results 1 to 6 of 6

Thread: Internet Explorer Help

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    Sep 1999
    Location
    Leeds, UK
    Posts
    287

    Post

    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

  2. #2
    Lively Member
    Join Date
    Oct 1999
    Posts
    101

    Post

    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

  3. #3

    Thread Starter
    Hyperactive Member
    Join Date
    Sep 1999
    Location
    Leeds, UK
    Posts
    287

    Post

    Yes it worked!

    Thank you

  4. #4
    Guru Clunietp's Avatar
    Join Date
    Oct 1999
    Location
    USA
    Posts
    1,844

    Post

    Does anyone know an API to clear the history and temp internet files in IE?

    Thanks

  5. #5
    New Member
    Join Date
    Jan 2000
    Location
    Sydney, NSW, Australia
    Posts
    4

    Post

    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

  6. #6
    _______ HeSaidJoe's Avatar
    Join Date
    Jun 1999
    Location
    Canada
    Posts
    3,946

    <?>

    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
  •  



Click Here to Expand Forum to Full Width