Hi,
I am loading background image at runtime in my MFC Application. Like this :
m_objMainScrnDC.CreateCompatibleDC(NULL);
m_objMainScrnBgBitmap.LoadBitmap(IDB_MAIN_SCRN_BG);
And i have tabcontrol on my page at design time , now i want to place a background image for tab control at runtime but i am not able to get that image The tabcontrol is on top of background image which i have loaded at run time.
m_objTabDC.CreateCompatibleDC(NULL);
m_objTabBitmap.LoadBitmap(IDB_TAB_BG);
How i can achieve this ?