01-12-2006 07:44 AM
01-13-2006 05:18 PM
01-16-2006 11:44 AM
Your problem is of course the use of globals. That is almost always a bad idea and asking for troubles once your application gets bigger. Avoiding race conditions and undesired influences between different parts of your application will take up more and more of your development time as your project grows.
@vulpe wrote:
My goal is to break apart an entirely LabView created application so I can still use parts of it (builded as Shared DLLs upon on some VIs) in my new .Net application. My problem is that some others VIs (that I am not intending using) are changing those global variables (in the natural data flow of the application). I could , of course, send the values of those global variables as parameters, but I don't know how should I pass those data types (and their size)... There are some clusters there...
Any help is well appreciated