07-13-2024 12:16 PM
Dear All,
Finally it is working as expected. I would like to thank you all for your time and dedication and support provided to me. I really have to appreciate your support. Once again thank you and would like to sorry for the long time discussion on this topic. Have a nice week end.
07-13-2024 12:57 PM - edited 07-13-2024 01:01 PM
@Maheboob wrote:
Dear All,
Finally it is working as expected. I would like to thank you all for your time and dedication and support provided to me. I really have to appreciate your support. Once again thank you and would like to sorry for the long time discussion on this topic. Have a nice week end.
Programming should be exact and %D is NOT a valid format specifier (even though the compiler seem to gloss over it and makes assumptions about your intent). The correct format for decimal integers is %d. You need to learn how to exactly copy code!
Also be aware that csv (comma separated values) is a poor choice for files because they will break in any country that use the comma a decimal delimiter. The default is tab delimited *.txt and e.g. Excel has no problem reading these correctly.
(As mentioned before, it is also annoying if you mark almost every single post her as "solution". Most are not! If you like a comment, give it kudos! A thread should typically only have very, very few solutions, typically exactly one)
07-13-2024 08:57 PM
Hi,
Ok. Noted with thanks.
07-17-2024 03:18 AM
I am creating exe application of above VI but its giving this error.
07-17-2024 05:06 AM
Hi ,
Done. Its ok now.
07-17-2024 08:29 AM
I assume that you built he entire code in a proper state machine that runs when opened (default for exes), allows the user to pick the folder, and pattern, and output file, process the data giving a suitable progress indicator, then goes back to the idle state to potentially process another set. Once you are done, pressing [X] in the upper right should properly shut down the program (as exe) or go back to edit mode (in the development system).
Right?
07-18-2024 02:50 AM
Yes. Exe has been created and its working good. Thanks for the support
07-19-2024 12:19 PM
Hi,
I installed again NI-Visa software and after that it detected.
I have 4 different type of test Vi's. I want to create common program. Steps of program as below.
1) When I click on Start, comport address should read from config file. Config.ini (From path)
2) Once initialization is ok, Operator need to enter the name.
4) Select the model type in LabVIEW as per data base file. Global_Data.xls. From define path.
5) As per define test parameter, it should start testing. Example Global_Data.xls,
variable_name |
Part/name |
Voltage_In_Kv |
Maximum_Current_Is_Set_At_mA |
Test_Time |
RAMP_Second_Testing_Time |
6) Once test is complete (pass/Fail) , the test result needs to write into excel. (18-07-2024 example).
Please advice.