Search
 
SCRIPT & CODE EXAMPLE
 

CSHARP

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
Comment

PREVIOUS NEXT
Code Example
Csharp :: how to add a force to an object unity 
Csharp :: remove force unity 
Csharp :: How to type custom backcolor on c# winform 
Csharp :: add spaces in string 
Csharp :: get all classes that extend a class c# 
Csharp :: c# get classes which inherits 
Csharp :: string tochar array c# 
Csharp :: c# loop xml 
Csharp :: c# max two values 
Csharp :: c# pi 
Csharp :: unity get pivot position 
Csharp :: how to make a 3d object do something when clicked on 
Csharp :: c# yield keyword 
Csharp :: c# timer 30 seconds 
Csharp :: c# ternary operator 
Csharp :: unity public static variable 
Csharp :: C# api get value from header 
Csharp :: tostring format 2 decimals 
Csharp :: unity scroll rect to bottom 
Csharp :: c# datetime remove days 
Csharp :: listbox items to string c# 
Csharp :: unity c# move transform 
Csharp :: c# creating an array 
Csharp :: dxf read c# 
Csharp :: label wpf 
Csharp :: Get Mac address of Device in Xamarin 
Csharp :: global exception handler c# 
Csharp :: itext7 pdfwriter outputstream c# 
Csharp :: async where linq 
Csharp :: eventsource web api c# 
ADD CONTENT
Topic
Content
Source link
Name
8+4 =