Help with VB .NET

02/01/2016 02:34 lkybl#1
I have a problem I want to open the game map in my program through webbrowser1.navigate("http://cz1.darkorbit.bigpoint.com/indexInternal.es?action=internalMapRevolution"), It's not work to me, even if I add a reference &dosid=my sid, in a normal browser I both work, but in visual studio I'm just a black screen loads, do not know what was repeated. Sorry for the bad English, maybe you will understand my problem and thank you for your answers.
02/01/2016 06:21 Dr.Toni#2
Clear Cache at at everytime when the Program Start.
02/01/2016 09:35 Viceroy-#3
here is it


Shell("RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 8 ")


Sub Clear_Temp_Files()
Shell "RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 8 "
End Sub


Sub Clear_Cookies()
Shell "RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 2"
End Sub



Sub Clear_History()
Shell "RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 1"
End Sub



Sub Clear_Form_Data()
Shell "RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 16"
End Sub



Sub Clear_Saved_Passwords()
Shell "RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 32"
End Sub



Sub Clear_All()
Shell "RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 255"
End Sub



Sub Clear_Clear_Add_ons_Settings()
Shell "RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 4351"
End Sub

That should work
02/01/2016 10:55 lkybl#4
Thanks for the answer when I'm at the computer I'll try, I 'll let you know how it turns out .
02/01/2016 15:49 Dr.Toni#5
Quote:
Originally Posted by KaloianBG View Post

That should work
Vb.net is ugly.

@Te
Switch to C#

I will Show you later how to clear the Cache in C#.
02/01/2016 16:34 Viceroy-#6
Quote:
Originally Posted by lkybl View Post
Thanks for the answer when I'm at the computer I'll try, I 'll let you know how it turns out .
Don't say it, press it.

EDIT:
As like the "expert" - Dr.Toni said C# is much better than VB ;)
02/01/2016 20:25 lkybl#7
It work!!!! :) Thanks!:)
02/01/2016 21:03 Dr.Toni#8
Here you have smarter versions:

C#

Vb.net

I hope that I didn't miss something. :p
02/01/2016 22:41 YatoDev#9
InetCpl.cpl,ClearMyTracksByProcess 4351

clears anything.

better solution and with just 1 line
02/02/2016 03:14 Zetadarus#10
that's a bug with theinternet explorer engine , like peopole said upped , clear tje cache using their codes


( to switch to gecko browser like me hehe)