|
-
Nov 5th, 2003, 03:04 AM
#1
Thread Starter
Frenzied Member
Webbrowser makes computer crash? (also in vb6)
Hi guys , i am working on my own browser (works great)...
but once in a while (on my work computer it happens all the time) the webbrowser controll makes my computer crash to a blue screen o'death. this happens when i open a website while there is already one in the controll itself..... this happens with every kind of site....
anybody know why that happens? even with no events and the browser only this happens..
do i have to do something with the page before i even try opening a new one?
-
Nov 5th, 2003, 04:54 AM
#2
Lively Member
Hi,
Your Pc got problems. You check it by specific tools.
-
Nov 5th, 2003, 04:57 AM
#3
Thread Starter
Frenzied Member
it's not my pc only... even on a freshly installed pc and only the .net framework it occures.. test it on aprox 4 pc's all the same result.........
it doesnt always happen only when certain "heavy" sites seem to load (is a guess) try it with astalavista.com or so :|
might be a problem with page scripts or so? :S
-
Nov 5th, 2003, 05:01 AM
#4
Lively Member
Can you give me the Pc spec you have ?
-
Nov 5th, 2003, 05:06 AM
#5
Thread Starter
Frenzied Member
at work where i am now ? not sure :P
p3 700 , 40gig hdd , winxp Sp1
home
p4 2.4 , 80 gig hdd , winxp sp1
but it seems to crash only at certain site.. trying some stuff now... like if there is a script that makes the object crash big time or so
can you try and load the page :
http://www.astalavista.com
and then goto a other site? :S...
that is where it crashed for me (be aware that your computer will crash) :S
-
Nov 5th, 2003, 05:11 AM
#6
Thread Starter
Frenzied Member
it really seems to only occur at that page at the moment.... :S.. cant find any pages that make it crash
-
Nov 5th, 2003, 05:14 AM
#7
are you trying to handle the NewWindow property still?
because as soon as you load that site it opens a second window , maybe thats what's throwing it.
you could always start navigation in a new thread, eg:
VB Code:
[color=blue]Private Sub[/color] Button1_Click([color=blue]ByVal[/color] sender [color=blue]As[/color] System.Object, [color=blue]ByVal[/color] e [color=blue]As[/color] System.EventArgs) [color=blue]Handles[/color] Button1.Click
[color=blue]Dim[/color] thrd [color=blue]As New[/color] Threading.Thread([color=blue]AddressOf[/color] LoadIE)
thrd.Start()
[color=blue]End Sub[/color]
[color=blue]Private Sub[/color] LoadIE()
webbrowser.Navigate(" your url here ")
[color=blue]End Sub[/color]
~
if a post is resolved, please mark it as [Resolved]
protected string get_Signature(){return Censored;}
[vbcode][php] please use code tags when posting any code [/php][/vbcode]
-
Nov 5th, 2003, 05:19 AM
#8
Thread Starter
Frenzied Member
you could always start navigation in a new thread
well if the thread itself makes the computer crash.. wouldnt that thread do the same?
are you trying to handle the NewWindow property still?
Yes but it works perfectly with other pages that create popups :S
isnt there (by any chance) a new version of the webcontroll? the version i have is 1.1.0.0
i think it is still from vb6 ...... or is there a .net version? (not right? )
-
Nov 5th, 2003, 05:30 AM
#9
Lively Member
On my side. It's working properly.
-
Nov 5th, 2003, 05:31 AM
#10
Thread Starter
Frenzied Member
-
Nov 5th, 2003, 06:56 AM
#11
Thread Starter
Frenzied Member
tried it in a new project now.. it works :|...
but i wonder why.... removed all my code from the browser object in my own project... still the crash :|
trying it with buttons now for a mo
Guess what.. crashed....
Last edited by Ultimasnake; Nov 5th, 2003 at 07:00 AM.
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
|