C# Examples

ChilkatHOMEAndroid™ASPVisual BasicVB.NETC#iOS (IPhone)Objective-CC++CUnicode C++Unicode CMFCDelphi DLLDelphi ActiveXFoxProJavaPerlPHP ExtensionPHP ActiveXPythonPowerShellRubySQL ServerVBScript

C# Examples

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


More Examples...
Amazon S3
NTLM
FileAccess
RSS
Atom
String
Byte Array
Self-Extractor
Service
PPMD
Deflate
DH Key Exchange
DSA
Bzip2
LZW

 

 

 

 

 

 

Configure a Windows Service for Auto-Start

Configure a Windows service to be auto-started when the computer boots.

Download: Chilkat .NET Assemblies

Chilkat.Service service = new Chilkat.Service();

service.ServiceName = "MyService";

bool success;
success = service.SetAutoStart();
if (success != true) {
    MessageBox.Show("Failed to configure service for auto-start.");
    textBox1.Text += service.LastErrorText + "\r\n";
    return;
}

MessageBox.Show("Windows service configured for auto-start!");
 

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