Login | |
|
 |
RE: vbscript capability - 9/22/2008 1:12:38 AM
|
|
 |
|
| |
Rischip
Posts: 502
Score: 2
Joined: 3/26/2007
Status: offline
|
VBScript does not support Variable Type Declarations. So "Public App As AppleAccounting.Application" would simply become "Dim App". VBScript does support COM interfaces. So try creating the COM app like this.... Set App = CreateObject("AppleAccounting.Application") and see what you can do with the object.
_____________________________
Rischip Author of - The Grim Linker
|
|
| |
|
|
|
 |
RE: vbscript capability - 9/22/2008 7:30:47 AM
|
|
 |
|
| |
Fredledingue
Posts: 383
Score: 0
Joined: 5/9/2005
From:
Status: offline
|
The advantage of csv is that it's a text based and therefore can be read through the File System Object. A much more convenient and faster way than using Excell.
_____________________________
Fred
|
|
| |
|
|
|
 |
RE: vbscript capability - 9/23/2008 5:51:57 AM
|
|
 |
|
| |
Fredledingue
Posts: 383
Score: 0
Joined: 5/9/2005
From:
Status: offline
|
ehvbs, no, I just wanted to say that it's more convenient, in my opinion, to read the csv file as atext file and manipulate the text strings on each line, than reading it via a tier application.
_____________________________
Fred
|
|
| |
|
|
|
|
|