I'm thinking that either PERL or VBscript would be the best (easiest) for this:
I use Wonderware at work a lot - and it's tedius. Basically, it's industrial HMI software that shows active graphics on a touchscreen that represents industrial processes that can be controlled.. Something as simple as a valve has integers, discrete values, alarms, etc..
But, every 'tag' is based off of one single string, such as 'Valve555255'..
I want to create a program that allows you to type in Valve names, motor names, loop names, etc... and create according database entries that fit the wonderware format (csv).
So.. I would type in Valve555255 and it would automatically create something like:
Valve555255_Coil
Valve555255_FeedbackOn
Valve555255_FeedbackOff
Valve555255_MaintenanceNumber
Valve555255_State
etc...
It can almost be done in Excel using the Concatenate function - except the database entries need to be put under corresponding headings..
So.. is Perl my best bet?
I use Wonderware at work a lot - and it's tedius. Basically, it's industrial HMI software that shows active graphics on a touchscreen that represents industrial processes that can be controlled.. Something as simple as a valve has integers, discrete values, alarms, etc..
But, every 'tag' is based off of one single string, such as 'Valve555255'..
I want to create a program that allows you to type in Valve names, motor names, loop names, etc... and create according database entries that fit the wonderware format (csv).
So.. I would type in Valve555255 and it would automatically create something like:
Valve555255_Coil
Valve555255_FeedbackOn
Valve555255_FeedbackOff
Valve555255_MaintenanceNumber
Valve555255_State
etc...
It can almost be done in Excel using the Concatenate function - except the database entries need to be put under corresponding headings..
So.. is Perl my best bet?