You find this example project in your Plugins Download as a Xojo project file within the examples folder: /CURL/CURLS text download
Class Window1 Inherits Window
Control PushButton1 Inherits PushButton
ControlInstance PushButton1 Inherits PushButton
EventHandler Sub Action()
DoDownload url.text
End EventHandler
End Control
Control URL Inherits TextField
ControlInstance URL Inherits TextField
End Control
Control StaticText1 Inherits Label
ControlInstance StaticText1 Inherits Label
End Control
Control ResultText Inherits Label
ControlInstance ResultText Inherits Label
End Control
Control TextArea1 Inherits TextArea
ControlInstance TextArea1 Inherits TextArea
End Control
Private Sub DoDownload(URL as string)
dim d as new CURLSMBS
// write debug log
d.OptionVerbose = true
// download here
d.OptionURL = URL
// if you use SSL, maybe put in a certificate or disable verification?
d.OptionSSLVerifyHost = 0
d.OptionSSLVerifyPeer = 0
// run download
dim e as integer = d.Perform
// check result
dim s as string = d.OutputData
// fix text encoding
if s.Encoding <> nil then
// ok?
elseif encodings.UTF8.IsValidData(s) then
s = DefineEncoding(s, Encodings.UTF8)
else
s = DefineEncoding(s, encodings.ISOLatin1)
end if
// fix line endings
s = ReplaceLineEndings(s, EndOfLine)
TextArea1.text = s
ResultText.text="Result: "+str(e)
Dim DebugMessage As String = d.DebugMessages // check in debugger on error
If e <> 0 Then
Break
// fix line endings
DebugMessage = ReplaceLineEndings(DebugMessage, EndOfLine)
TextArea1.text = DebugMessage
End If
End Sub
End Class
MenuBar MenuBar1
MenuItem UntitledMenu1 = ""
MenuItem FileMenu = "&File"
MenuItem FileQuit = "Quit"
MenuItem UntitledMenu5 = ""
MenuItem EditMenu = "&Edit"
MenuItem EditUndo = "&Undo"
MenuItem UntitledMenu0 = "-"
MenuItem EditCut = "Cu&t"
MenuItem EditCopy = "&Copy"
MenuItem EditPaste = "&Paste"
MenuItem EditClear = "Clear"
MenuItem UntitledMenu4 = ""
MenuItem UntitledMenu3 = ""
MenuItem UntitledMenu2 = ""
End MenuBar
Class App Inherits Application
End Class