08-25-2005 07:28 AM
08-25-2005 07:50 AM
One possibility is that you have a memory leak in your code resulting from not properly closing all the references that you open. In this situation, the code will appear to work fine but will take forever to shutdown because before the program (or LV) can quit, it has to release all those references that are left open. If this is the problem, the way to verify it is to watch the task manager. As the program is running you will see the memory allocated to it increasing over time. Then when you quit the program, the program should remain in the "Processes" list after it has quit. As you watch it you will probibly see the memory allocated to it start to drop, slowly at first and then more rapidly.
Mike...
08-25-2005 09:49 AM