11-17-2015 07:54 AM
I want to know this three element represent what is the meaning?Every value represent Significance .
11-17-2015 05:20 PM - edited 11-17-2015 05:29 PM
Status is a boolean that is true when an error occurred and false when no error occurred. It tells you if an error occurred.
Code is an error code tha you can look up (e.g. right-click...explain error). It tells you what kind of error occurred.
Source is a text field that can contain information on where the error occured.
11-17-2015 05:27 PM
If the "status" is false but there is some information in the "source" then it is considered a warning.
11-17-2015 05:30 PM
The first place to look for information like that is the Context Help window. Everything altenbach told you is available there. It is good to get into the habit of keeping that window open while programming.
Lynn
11-17-2015 06:50 PM
I want to know that every "code" represent meaning,how to search it.
11-17-2015 07:11 PM
In the upper right part of the main LabVIEW Forum, there are links to LabVIEW tutorials. View all of them and you will not have to ask such basic questions.
Bob Schor
11-17-2015 07:40 PM
You want us to explain several million error codes to you?
Go to Help->Explain Error and start typing them in one by one. You'll get explanations there. Don't forget to look at the negative values as well.
11-17-2015 07:46 PM
@zhang519 wrote:
I want to know that every "code" represent meaning,how to search it.
Let's see here. I typically run into:
7 - File not found (try to open a file that does not exist)
10 - Duplicate path (try to create a path that already exists)
1 - Input parameter invalid (typically from an invalid reference)
Beyond that, I'm using the Righ-click on the error cluster that is showing the error and selecting "Explain Error".