i need to save a file as a "Microsoft Excel Workbook" which has been opened as a .txt file. At present all i can get is "Text (Tab-delimited)" irrespective of the filename
i'm using the following code in my application...
ExcelApp.ActiveWorkbook.SaveAs FileName:=FileName1
i know that using VBA it should look like this...
ActiveWorkbook.Saveas Filename:=FileName1, FileFormat:=xlNormal
can anyone tell me what the "FileFormat:=xlNormal" should be in VB6
Thanks.
i'm using the following code in my application...
ExcelApp.ActiveWorkbook.SaveAs FileName:=FileName1
i know that using VBA it should look like this...
ActiveWorkbook.Saveas Filename:=FileName1, FileFormat:=xlNormal
can anyone tell me what the "FileFormat:=xlNormal" should be in VB6
Thanks.