22-05-19, 01:38 AM
تم حل الموضوع
حصلت كود اشتغل معاي بدون تهنيق
حصلت كود اشتغل معاي بدون تهنيق
كود :
Public Function CheckInternetConnection() As Boolean
Try
Using client = New WebClient()
Using stream = client.OpenRead("http://www.google.com")
Return True
End Using
End Using
Catch
Return False
End Try
End Function
