06-29-2005 07:58 AM
07-04-2005 04:53 AM
07-05-2005 02:34 AM
07-06-2005 02:24 AM
07-07-2005 07:54 AM
07-08-2005 06:53 AM
07-08-2005 09:16 AM
07-11-2005 12:48 AM
This source code does not run.
You dim the variable f but do not reference to a file. Before using a command like f.readline you always have to do sth like:
Set fso = CreateObject("Scripting.FileSystemObject")
Set f = fso.OpenTextFile("c:\test.txt", ForWriting, True)
f.writeline("Hello World")
Does this help?
07-11-2005 12:07 PM
hello,
this was only a part of the hole source code, but it dosn't matter - the decisive lines are:
Call ASCIIConfigLoad("C:\Programme\National Instruments\DIAdem 9.1\User\DIAdemscript BKV\AscciImportKonfig")
Call ASCIILoad("C:\measurements\test.txt",0)
the rest of the code is irrelevant.
regard and thanks for help
07-13-2005 12:20 AM
These two lines work for me, and also with:
"C:\Programme\National Instruments\DIAdem 9.1\DIADEM.exe" "/CScriptstart('c:\test\test.vbs')"
Are you sure it should be ...ascciimportKonfig and not ...asciiimportKonfig ?
What is your error code?