Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

webbrowser control link.attacheventhandler memory issue

Status
Not open for further replies.

Guern

Programmer
Jun 22, 2001
91
0
0
GB
Hi,

Just can't figure out a solution for this one.

If you run a webbrowser control and

Dim link As HtmlElement
Dim links As HtmlElementCollection = WebBrowser1.Document.Links
For Each link In links
link.AttachEventHandler("onclick", AddressOf LinkClicked)
Next

This is in the documentcompleted event (where it says to), as you browse, memory usage just grows, and grows, and grows. Before you know if you have 500Mb+. Memory is released upon closing the app.

The linkclicked event is just

LastCLickedLink = link.GetAttribute("href")

None of the code examples I've seen using attacheventhandler seem to do anything about detaching, but I have tried cycling through detacheventhandler in the link clicked event as well. If I comment out the link.attachevenhandler line, the memory usage does not grow. If I look at the instances in use, there will be 1000's of 'eventhander click' still there.

I've tried various garbage collection.

Anyone any ideas?

Thanks.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top