AH> I enter the "static" key word (static Char * RetailerID)
AH> Now the error message disapear.
The variable is global, not static. Remove the 'static' from the
declaration.

AH> But Still I'm having one problem.
AH> I assigned a value for RetailerID during the retailer.c file.
AH> But that value is not exist when comes to invoic.c file
Read all the replies carefully, implement the conditional compilation
with the directives in your Global.h:
#ifndef __GLOBAL_H__
#define __GLOBAL_H__
...
#endif // __GLOBAL_H

Do not forget to declare the global variable 'extern' in the
header file.

If the error persists then try to Remove Object Code from the CW's Project
menu.



-- 
For information on using the Palm Developer Forums, or to unsubscribe, please 
see http://www.palmos.com/dev/support/forums/

Reply via email to