LabVIEW holds Excel Reference - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T21:43:39Zhttp://stackoverflow.com/feeds/question/120908http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/120908/labview-holds-excel-reference0LabVIEW holds Excel ReferenceManoj2008-09-23T13:16:46Z2008-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#1211020Answer by KevDog for LabVIEW holds Excel ReferenceKevDog2008-09-23T13:47:30Z2008-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#1218800Answer by Arc the daft for LabVIEW holds Excel ReferenceArc the daft2008-09-23T15:49:17Z2008-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>