DIAdem

cancel
Showing results for 
Search instead for 
Did you mean: 

*.DAT Supporting FILES

Solved!
Go to solution

Hi,

 

Is there a way to identify Supporting files of a DAT File?

 

i have a dataset, please see the snapshot of Dataset.

 

In that DataSet how do i identify Supporting files of a *.dat File.

 

 

0 Kudos
Message 1 of 4
(4,627 Views)
Solution
Accepted by topic author sunilpadikar77

The DataFileLstGet command should do the job for you

 

Option Explicit

dim datFilePath : datFilePath = "C:\Users\GrKrantA\kunden\WABCO_DataFinderBug\001026_4.DAT"

dim txt : txt = ""
dim cmpCount : cmpCount = DataFileLstGet(datFilePath)
dim i : For i = 1 to cmpCount
  txt = txt & DataFileLst(i) & VBCRLF
Next
MsgBox txt

Be aware that there are additional commands

DataFileRename
DataFileDelete
...

That might do the job you try to fullfill

0 Kudos
Message 2 of 4
(4,614 Views)

Hi,

 

your solution worked great. thanks

0 Kudos
Message 3 of 4
(4,602 Views)

Hi AndreasK,

 

your solution worked great. thanks

0 Kudos
Message 4 of 4
(4,601 Views)