IE cache

Just starting out? Need help? Post your questions and find answers here.
AgManiX
User
User
Posts: 10
Joined: Fri May 06, 2011 9:25 pm
Contact:

IE cache

Post by AgManiX »

Hello!
I'm coding client for online web-browser game and i need to download all resources from game server(Canaan Online Russia) and launch it from client computer and if i understand right,it must be downloaded in cache in client directory.
Question: how can i change IE cache directory?
Best regards, Max Nixischev, AGMAsoft.
Multilingual PureBasic Search[/b]
Nituvious
Addict
Addict
Posts: 1030
Joined: Sat Jul 11, 2009 4:57 am
Location: United States

Re: IE cache

Post by Nituvious »

This might not be what you want, but it might save you some time. You can use WebGadget().
▓▓▓▓▓▒▒▒▒▒░░░░░
AgManiX
User
User
Posts: 10
Joined: Fri May 06, 2011 9:25 pm
Contact:

Re: IE cache

Post by AgManiX »

Nituvious wrote:This might not be what you want, but it might save you some time. You can use WebGadget().
))) u dont understand me
i need to change cache directory of IE
Best regards, Max Nixischev, AGMAsoft.
Multilingual PureBasic Search[/b]
Nituvious
Addict
Addict
Posts: 1030
Joined: Sat Jul 11, 2009 4:57 am
Location: United States

Re: IE cache

Post by Nituvious »

AgManiX wrote:
Nituvious wrote:This might not be what you want, but it might save you some time. You can use WebGadget().
))) u dont understand me
i need to change cache directory of IE
Oh, sorry about that! I guess I didn't see it.
I don't think you can change internet explorer's cache directory in PB unless you automated something.
In my earlier post I was referring to something like this:

Code: Select all

OpenWindow(0, 0, 0, 600,600, "", #PB_Window_ScreenCentered | #PB_Window_SystemMenu | #PB_Window_MaximizeGadget | #PB_Window_SizeGadget)

web = WebGadget(#PB_Any, 0, 0, WindowWidth(0), WindowHeight(0), "http://www.runescape.com/game.ws?j=1")
Repeat
	eventID.l = WaitWindowEvent(1)
	ResizeGadget(web, 0, 0, WindowWidth(0), WindowHeight(0))
Until eventID.l = #PB_Event_CloseWindow
▓▓▓▓▓▒▒▒▒▒░░░░░
User avatar
Rook Zimbabwe
Addict
Addict
Posts: 4322
Joined: Tue Jan 02, 2007 8:16 pm
Location: Cypress TX
Contact:

Re: IE cache

Post by Rook Zimbabwe »

changing the cache directory of IE would be EXTREMELY bad and might cause IE not to run correctly. Bad idea... try Nituvious' way! :mrgreen:
Binarily speaking... it takes 10 to Tango!!!

Image
http://www.bluemesapc.com/
Post Reply