Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Can someone please provide me with the coding to clear my IE cache?
Thanks |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
This is one way:
Private Declare Function DeleteUrlCacheEntry Lib "Wininet.dll" _ Alias "DeleteUrlCacheEntryA" _ (ByVal lpszUrlName As String) As Long Sub ClearCache(strURL As String) If DeleteUrlCacheEntry(strURL) = 0 Then MsgBox "The cached couldn't be cleared, so" & _ vbCrLf & "possibly you won't get the latest.", , _ "clearing cache" End If End Sub Sub test() ClearCache "http://www.google.co.uk/" End Sub RBS "CM4@FL" wrote in message ... Can someone please provide me with the coding to clear my IE cache? Thanks |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to Clear a Pivot Table Cache | Excel Discussion (Misc queries) | |||
Memory/Cache Clear: | Excel Programming | |||
Flushing Memory/Cache Clear: | Excel Programming | |||
Flush Memory/Cache Clear: | Excel Programming | |||
Flushing Memory/Cache Clear: | Excel Programming |