06-29-2006 06:38 AM
07-04-2006 06:48 AM
Hi Jurgen
The errors returned for a LabVIEW PDA application are Windows CE error codes. You can fine a discription of these codes in the winerror.h header file for your target. This files is installed by default in the following location:
C:\Program Files\Windows CE Tools\wce420\POCKET PC 2003\Include\Armv4
The following I found for the errors 6, 7 and 8.
//
// MessageId: ERROR_INVALID_HANDLE
//
// MessageText:
//
// The handle is invalid.
//
#define ERROR_INVALID_HANDLE 6L
//
// MessageId: ERROR_ARENA_TRASHED
//
// MessageText:
//
// The storage control blocks were destroyed.
//
#define ERROR_ARENA_TRASHED 7L
//
// MessageId: ERROR_NOT_ENOUGH_MEMORY
//
// MessageText:
//
// Not enough storage is available to process this command.
//
#define ERROR_NOT_ENOUGH_MEMORY 8L // dderror
Hope this helps
Thanks
Karsten