Chilkat
HOME
Android™
ASP
Visual Basic
VB.NET
C#
iOS (IPhone)
Objective-C
C++
C
MFC
Delphi
FoxPro
Java
Perl
PHP Extension
PHP ActiveX
Python
PowerShell
Ruby
SQL Server
VBScript
Copy File
VB.NET source code showing how to copy a file. ' How to copy a file.
Private Sub button6_Click(sender As Object, e As System.EventArgs)
Dim fi As New FileInfo("myImage.gif")
Dim overwrite As Boolean = True
fi.CopyTo("myImage2.gif", overwrite)
End Sub 'button6_Click
|
© 2000-2012 Chilkat Software, Inc. All Rights Reserved.