vb6

VB6 Package and Deployment Tool

http://www.developerfusion.... http://groups.google.com/gr... http://visualbasic.about.co... http://support.microsoft.co...

How to merge/join/append/concatenate PDF files with WebSuperGoo ABCpdf

How to merge/join/append/concatenate PDF files with WebSuperGoo ABCpdf Approach 1: Public Sub DoPDFAppend() If SummaryFileName = "" Then Exit Sub On Error GoTo ReportErrorHandler '--------------------------... ' PDF $ Append OneFile_Bookmark_ByAccount_... '--------------------------... Dim ii As Integer Dim totalFileCount As Integer totalFileCount = UBound(PDFFileArray) + 1 For ii = 0 To UBound(PDFFileArray) Dim thisFileNumber As Integer thisFileNumber...

How to merge/join/append/concatenate files in VB6 with FileSystemObject

How to merge/join/append/concatenate files in VB6 with FileSystemObject Private Sub Command1_Click() Dim folder As String Dim dest_file As String Dim file_ext As String Dim lPid As Long Dim shellStr As String Dim rvShellStr As String rvShellStr = "" folder = "C:\myFolder\mySubFolder\" dest_file = "MergeFileName" file_ext = "*.txt" Dim srcFolder As String srcFolder = folder + file_ext Dim destFile As String destFile = folder + dest_file + ".txt" '--------------------------... 'kill target...