01-22-2008 02:07 PM
01-23-2008 04:28 PM
02-20-2008 02:04 PM
I modified the Text to sequence translator for my application.
I modified it to accept any tab delimited file with certain keywords
This is text file format which I am using:
Version Number 1
Test ID 2
Test File Type CRC
Firmware xxx
Family xxx
Memory 64 Meg
02-20-2008 02:08 PM
02-20-2008 04:35 PM
Thanks for the reply. That is similar to what I decided on. I use KEYWORDS and have made the parser smart enough to ignore comments. I'm making progress in getting this to work, but the lack of documentation makes it tough. Here is a sample of the format I am working on.
#########################################
# Possible Step File Format
#
# File Version 1.0 - File Format 2.0
#########################################
FileFormatVersion=2.0;
FileVersion=1.0;
#SCOPE Name as Type = Value;
LOCAL BtnLabel as String = "Click Here";
LOCAL BtnPressed as Numeric = -1;
GLOBAL MyNumericVar as numeric = 24.321;
#STEPXXX TestName:TestType
# TestName.Parameter=value
STEP001 NumTest1:numeric;
NumTest1.module=LabVIEW_NumTestModule.vi;
STEP002 MsgToUser:msgbox;
MsgToUser.text="Can you see me?";
MsgToUser.button1label=BtnLabel;
MsgToUser.title="This is Cool!";
BtnPressed.value=MsgToUser.BtnPressed;
02-21-2008 09:50 AM
02-21-2008 12:15 PM
02-21-2008 12:29 PM
02-22-2008 04:02 PM
03-02-2008 11:26 PM