I have a Bitmap image that i want to load dynamically. But I am unable to load it.
CBitmap bmp; bmp.LoadBitmap(\"c:\\\\aeimg\");
it does not
It could be as simple as you forgetting to escape the backslash. Instead of
bmp.LoadBitmap("c:\aeimg");
use
bmp.LoadBitmap("c:\\aeimg");
Otherwise you're passing an invalid path to the LoadBitmap method.