Advertisement
Advertisement
| 05.27.2008 at 09:16AM PDT, ID: 23435347 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: |
Private Function XLSConvertTEXT(strSource As String, strTarget As String)
'Create a new instance of Excel
Dim oExcel As Object
Dim oBook As Object
Dim oSheet As Object
Dim saveFile As Variant
Set oExcel = CreateObject("Excel.Application")
Set oBook = oExcel.ActiveWorkbook
'Open the text file
'Set oBook = oExcel.workbooks.Open(strSource)
'Batch Method
'The Array(X,Y) in field info represents the column and data type
'Where X represents the column, Y represents the data type
'1 = General; 2 = Text; 3 = Date (MMDDYY)
oExcel.Visible = True
oExcel.Workbooks.OpenText strSource, 437, 1, 1, 1, False, True, False, False, False, True, ","
'FieldInfo:=Array(Array(1, 1), Array(2, 1), _
'Array(3, 1), Array(4, 1), Array(5, 1), Array(6, 1), Array(7, 1), Array(8, 1), Array(9, 1), _
'Array(10, 1), Array(11, 1), Array(12, 1), Array(13, 1), Array(14, 1), Array(15, 1), Array( _
'16, 1)), TrailingMinusNumbers:=True
oExcel.Columns.AutoFit
oBook.SaveAs strTarget, 1
'oBook.SaveAs fileName:=Left(strTarget, Len(strTarget) - 3) & "xls", FileFormat:=43, Password:="", WriteResPassword:="", ReadOnlyRecommended:=False, CreateBackup:=False
oExcel.ActiveWorkbook.Close
oExcel.Application.SaveAs fileName:=strTarget, FileFormat:=43
oBook = Nothing
oExcel.Quit
oExcel = Nothing
End Function
|