Visual Basic Examples

ChilkatHOMEASPVisual BasicVB.NETC#Visual C++CMFCDelphiFoxProJavaPerlPHPPythonRubySQL ServerVBScript

VB Examples

Bounced Mail
Character Encoding
Digital Certificates
Digital Signatures
Email
FTP
HTML-to-XML
HTTP
IMAP
Encryption
MHT / HTML Email
RSA Encryption
S/MIME
Socket
Spider
String
Tar
Unicode
Upload
XML
XMP
Zip Compression

More Examples...
Email Object
POP3
SMTP
RSS
Atom
Self-Extractor
Service
PPMD
Deflate
DH Key Exchange
DSA


VB Strings
VB Byte Array

Unreleased...
Bzip2
LZW
Bz2
Icon

 

 

 

 

 

 

 

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


 

Need a specific example? Send a request to support@chilkatsoft.com

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