Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6614775
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T20:22:46+00:00 2026-05-25T20:22:46+00:00

I have a Windows Forms app that, unfortunately, must make calls to controls from

  • 0

I have a Windows Forms app that, unfortunately, must make calls to controls from a second thread. I’ve been using the thread-safe pattern described on the http://msdn.microsoft.com/en-us/library/ms171728.aspx. Which has worked great in the past.

The specific problem I am having now: I have a WebBrowser control and I’m attempting to invoke the WebBrowser.Navigate() method using this Thread-Safe pattern and as a result I am getting StackOverflow exceptions. Here is the Thread-Safe Navigate method I’ve written.

Private Delegate Sub NavigateControlCallback(ByRef wb As WebBrowser, ByVal url As String)

Private Sub AsyncNavigate(ByRef wb As WebBrowser, ByVal URL As String)
    Try
        If wb.InvokeRequired Then
            Dim callback As New NavigateControlCallback(AddressOf AsyncNavigate)
            callback(wb, url)
        Else
            wb.Navigate(url)
        End If
    Catch ex As Exception

    End Try
End Sub

Is there a Thread-Safe way to interact with WinForms components without the side effect of these StackOverflowExceptions?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T20:22:47+00:00Added an answer on May 25, 2026 at 8:22 pm

    This is the problem:

    If wb.InvokeRequired Then
        Dim callback As New NavigateControlCallback(AddressOf AsyncNavigate)
        callback(wb, url)
    Else
    

    On the second line of the If block, you’re just calling AsyncNavigate again. Directly. Resursively. With no marshalling to a UI thread. You should be using Invoke or BeginInvoke:

    If wb.InvokeRequired Then
        Dim callback As New NavigateControlCallback(AddressOf AsyncNavigate)
        wb.BeginInvoke(callback(wb, url))
    Else
    

    (Side-note: please don’t swallow exceptions like that…)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In a C#, Windows forms app, we have a series of user controls that
I have a Windows Forms app that contains a groupbox with about 30 controls.
I have a windows forms app with a textbox control that I want to
I have a Windows Forms app, that has a single ElementHost containing a WPF
I have a .NET application that contains a checkbox (System.Windows.Forms.Checkbox). This component (WindowsForms10.BUTTON.app.0.378734a1) is
I have a Windows Forms app that itself launches different threads to do different
I have a Windows Forms App that loads a dll @ runtime and executes
I have a Windows Forms app that is able to open up a console
I have a windows forms app with a maskedtextbox control that I want to
I have an Windows Forms application VS 2008 - C#, that uses app.config. In

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.