Visual Basic Examples

ChilkatHOMEAndroid™ASPVisual BasicVB.NETC#iOS (IPhone)Objective-CC++CUnicode C++Unicode CMFCDelphi DLLDelphi ActiveXFoxProJavaPerlPHP 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

 

 

 

 

 

 

 

Convert HTML File to Another Charset Encoding

Download Chilkat Charset ActiveX

Visual Basic example program showing how to convert an HTML file from one charset encoding to another.

    Dim cc As New ChilkatCharset2
    cc.UnlockComponent "anything for 30-day trial"

    ' Convert an HTML file from one charset to another.
    ' The ConvertHtmlFile will do two things:
    ' 1) Convert character data from one character encoding to another.
    ' 2) Add or modify the charset META tag within the HTML.
    
    cc.FromCharset = "euc-jp"
    cc.ToCharset = "utf-8"
    cc.ConvertHtmlFile "asahi_euc_jp.html", "asahi_utf-8.html"
    

 

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