https://bugs.winehq.org/show_bug.cgi?id=38887
Bug ID: 38887 Summary: (0x80004005): Overlapped I/O pending - NetworkAddressChanged Product: Wine Version: 1.7.44 Hardware: x86-64 OS: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: -unknown Assignee: wine-bugs@winehq.org Reporter: baseballplyr1300@gmail.com Distribution: ---
Created attachment 51823 --> https://bugs.winehq.org/attachment.cgi?id=51823 Detailed exception text
This code throws the exception "System.Net.NetworkInformation.NetworkInformationException (0x80004005): Overlapped I/O pending".
Public Class Form1
Private Sub Form1_Load(sender As System.Object, e As System.EventArgs) Handles MyBase.Load AddHandler Net.NetworkInformation.NetworkChange.NetworkAddressChanged, AddressOf ipCallBack End Sub
Private Sub ipCallBack(ByVal sender As Object, ByVal e As EventArgs) MsgBox("called") End Sub End Class