Hello esther,
you can redirect stdout to a file using "freopen":
FILE *myStdout;
myStdout = freopen("c:\\printf_output.txt", "w", stdout);
if(myStdout != NULL)
printf("\nthis text goes to the file and can be parsed afterwards");
fclose(myStdout);
but you need to have the dll-code. i don't know how to manage this if you only have the dll. maybe you then can create another dll as a wrapper.
best regards
chris
Best regards
chris
CL(A)Dly bending G-Force with LabVIEW
famous last words: "oh my god, it is full of stars!"