Metode ADO CopyTo


Referensi Objek Aliran Lengkap

Metode CopyTo digunakan untuk menyalin sejumlah karakter atau byte tertentu dari objek Stream terbuka ke objek Stream terbuka lainnya.

Jenis kedua objek Stream harus sama. Namun, objek Stream teks dapat disalin ke objek Stream biner, tetapi tidak sebaliknya, dan properti CharSet dari objek Stream tujuan dapat berbeda dari objek Stream sumber. 

Sintaksis

objStream.CopyTo dest,numchars

Parameter Description
dest Required. Where to copy the Stream (contains a reference to an open Stream object)
numchars Optional. An integer that specifies the number of characters or bytes to be copied from the current position in the source Stream to the destination Stream. Default is -1 (will copy all data from the current position to EOS)

Note: If the specified number is greater than the available number of bytes/characters until EOS, then only bytes/characters from the current position to EOS are copied


Referensi Objek Aliran Lengkap