06-29-2011 02:02 AM
Hi Everyone,
Iam having a binary file created by c++.It contains structure like this one...
struct
{
char name[2];
unsigned short num;
char identity[4];
double date;
union
{
byte id[4];
int sizeconst;
int size;
}
}
I want to read this struct file in labview. How can i do that?
06-29-2011 03:50 AM
Once I had the same problem, I've asked NI-support and they said to me because of different kind of reading method that that operation is impossibile to do, so the solution to solve the problem has been to create a C++ library that reads the structure from the file and makes disponible the data. After, I've called the library by "Call by library function" in my Labview software.