02-14-2008 08:26 PM
02-15-2008 04:43 AM
Matt W wrote:
So basically I'm wondering if there's a better way of dealing with compiler problems (like a decent log file somewhere), or beta version of LabVIEW with a newer application builder that I could try using (8.5 fixed one of the bugs I was having in 8.2 with classes with the same name living in different lvlibs).
02-15-2008 05:32 PM
Hi Matt,
LabVIEW provides the ability to create a very detailed log of the events that occur when building an installer. To create the detailed log, follow the steps below:
1. Navigate to the C:\Program Files\National Instruments\LabVIEW 8.2 directory.
2. Open up the LabVIEW.ini file and copy the "CDK.EnableLog=true" text to the bottom of the file. Enabling this feature will cause a detailed debug log to be written to your temp directory.
3. Save the changes and close the ini file.
The debug log should be located in the %temp% directory of your computer (%...% means a computer variable). To determine where this temp directory is located, follow the steps below:
1. Select Start » Run, type in "cmd" and then press OK.
2. Type "set" in the command prompt. This will return all of your computer's variable names.
3. Look for TEMP in the list of variable names. You should see something like "TEMP=C:\DOCUME~1\user\LOCALS~1\Temp".
4. Navigate to this directory using Windows Explorer. You should see a file named "Name.log" where "name" is the name of your build specification. For example, you might see "My Installer.log" if the name of your build specification is "My Installer".
Hope this helps!
Veda
02-15-2008 08:58 PM
02-16-2008 10:54 AM
In my experience, there is no real obligation. I'm sure NI will also be happy if you just test your complex application.
@matt W wrote:
Is there any kind of obligation to use the beta regularly? Since if it doesn't help much, I'd probably just end up removing it.
02-18-2008 12:47 PM
Hi Matt,
From your error logs, you have 3 reoccurring errors. /drawmgr.cpp (3570) : DAbort, /fpsane.cpp (369) : DWarn, and /image.cpp (13927) : DWarn.
A DWarn error is something unexpected but not fatal. LabVIEW will continue executing. These are usually not bad and you should not be overly concerned. A DAbort error is a fatal error and usually causes LabVIEW to crash.
The error /drawmgr.cpp (3570) : DAbort was reported to R&D (# CAR ID 4CCBD2PW) and has been fixed for a further version of LabVIEW.
The error /fpsane.cpp (369) : DWARN was reported to R&D (# CAR ID 4HNA8A00) and has been fixed for a further version of LabVIEW.
Thanks for the feedback!
Veda
02-18-2008 05:40 PM
02-19-2008 10:16 AM
02-19-2008 03:32 PM
02-19-2008 03:51 PM
@matt W wrote:
Since the beta is for 8.6, and I'm not seeing a download for 8.5.1, do you know when 8.5.1 will be available?
Matt W