Visual Basic Examples

ChilkatHOMEAndroid™ASPVisual BasicVB.NETC#iOS (IPhone)Objective-CC++CMFCDelphiFoxProJavaPerl
PHP ExtensionPHP ActiveXPythonPowerShellRubySQL ServerVBScript

VB Examples

Bounced Mail
Bz2
Character Encoding
CSV
Digital Certificates
Digital Signatures
Email
FTP
HTML Conversion
HTTP
IMAP
Encryption
MHT / HTML Email
POP3
RSA
S/MIME
SFTP
SMTP
Socket
Spider
SSH
SSH Key
SSH Tunnel
String
Tar
Upload
XML
XMP
Zip Compression

More Examples...
Amazon S3
Email Object
DKIM / DomainKey
NTLM
DH Key Exchange
DSA
FileAccess
RSS
Atom
Self-Extractor
Service
Bzip2
PPMD
Deflate
LZW


VB Strings
VB Byte Array

 

 

 

 

 

 

 

Split String into Array of Words

This example shows how to do split a string into an array of words.

Dim s As String
s = "Chilkat Software, Inc. : A Software Components Company."

Dim words() As String

' Split the string at the space characters.
words() = Split(s)

Dim tempStr As String
For i = 0 To UBound(words)
    ' Eliminate punctuation
    tempStr = Replace(words(i), ".", "")
    tempStr = Replace(tempStr, ",", "")
    tempStr = Replace(tempStr, ":", "")
    If Len(tempStr) > 0 Then
        List1.AddItem tempStr
    End If
Next


 

© 2000-2012 Chilkat Software, Inc. All Rights Reserved.