Horje
excel isrlgood Code Example
excel isrlgood
Public Function IsURLGood(url As String)
    Dim request As Object
    Set request = CreateObject("WinHttp.WinHttpRequest.5.1")
    On Error GoTo haveError
    With request
        .Open "HEAD", url
        .Send
        IsURLGood = .Status
    End With
    Exit Function
haveError:
    IsURLGood = Err.Description
End Function




Csharp

Related
how to generate a random number in c# Code Example how to generate a random number in c# Code Example
foreach c# linq example Code Example foreach c# linq example Code Example
jenga db connection Code Example jenga db connection Code Example
c# virtual keyword Code Example c# virtual keyword Code Example
change column name in datatable C# Code Example change column name in datatable C# Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8