A. I've not seen a Windows CE specific charting control - you might want to take a look at chart samples on
http://www.thecodeproject.com.
ActiveX controls are registered by eMbedded Visual C++ when these are downloaded to the target - alternatively, controls can be registered using regsvrce, or manually registering the control using the following API's.
hLibrary=LoadLibrary("controlname.dll");
pFn=GetProcAddress(hLibrary,"DllRegisterServer"); // get address of function
pFn( ); // call function
FreeLibrary(hLibrary);
- Mike Hall