LabVIEW holds Excel Reference - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T21:43:39Z http://stackoverflow.com/feeds/question/120908 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/120908/labview-holds-excel-reference 0 LabVIEW holds Excel Reference Manoj 2008-09-23T13:16:46Z 2008-09-24T05:36:41Z <p>Hi, I try to open and excel reference in LabVIEW and then close it after sometime. But the LabVIEW keeps holding the reference and does not release it unless I close the VI. Why is this happening? Is there anyway to force it to release the Reference?</p> <p>I am checking the error out for any errors. But it is not throwing up any errors.</p> http://stackoverflow.com/questions/120908/labview-holds-excel-reference/121102#121102 0 Answer by KevDog for LabVIEW holds Excel Reference KevDog 2008-09-23T13:47:30Z 2008-09-23T13:47:30Z <p>Are you checking the return value from the close file command? I've had this problem with LV in the past and have found this to be one possible root cause for this problem. </p> <p>Check out the following example file to see if you are doing things the same way:</p> <p>labview\examples\file\datalog.llb\Read Datalog File Example.vi</p> <p>HTH</p> http://stackoverflow.com/questions/120908/labview-holds-excel-reference/121880#121880 0 Answer by Arc the daft for LabVIEW holds Excel Reference Arc the daft 2008-09-23T15:49:17Z 2008-09-23T17:39:01Z <p>What are you doing in Excel?</p> <p>Typically, Labview will hold the reference open only until it is closed. However, this includes any references to <em>any</em> part of excel (excel.worksheet, excel.range, excel.workbook, etc). You need to close each reference explicitly.</p> <p>It can be painstaking to debug, but you need to manually go through your entire excel-handling section and make sure that every reference is closed.</p>