I am creating a login dialog of a system.I create a picture for the background.My requirement is to add controls top on that image.So how can i do if.If you can pls give me related links. bhw
TobetheWinner
Posts
-
Add controls to dialog visual studio 2005 -
Change text color of selected item in a tree controlMy requirement is If i select an item in a tree Control that Selected item's color of text should be changed.(or i want to recognize whether it is selected or not--some way to identify)So can you please tell me how to do it. bhw
-
Problem with Xp StylesStill Author did not reply my Question bhw
-
Problem with Xp StylesI added Xp style to my application.According to the instruction of the following article(From www.CodeProject.com). http://www.codeproject.com/w2k/xptheme.asp?df=100&forumid=2590&exp=0&select=1186683&mpp=50#xx1186683xx But the problem was there was a border around the button i created using
CButton::Create().
So i need to get rid of that problem.pls reply me bhw
-
Change the color of static controlThis is a dynamically created control.is there any style or method to do that. bhw
-
Change the color of static controlI want to change the color of static control to white.As well as in the static controls the text also should be visible.
CStatic temp = new CStatic();
temp->Create(text ,style |SS_LEFT ,pos ,this ,m_iAutoControlID);bhw
-
Static Control Prob. Pls reply meIn the read only edit box how to stop the blinking |. bhw
-
Static Control Prob. Pls reply meThanks bhw
-
Static Control Prob. Pls reply meIm Create a static control inorder to use it as a label
CStatic *temp = new CStatic();
temp->Create("YYYYY" ,SS_SIMPLE ,CRect(0,0,25,25) ,this);My requirement is if my text which should display inside static control exceeds the rectangle limits it should take a new line automatically. It Must be multiline static control. so how can i do it. bhw
-
return a map from a functionsome syntax i typed here is not visible when i post it.map means map C++ map. bhw
-
return a map from a functionIm using a map to store data.So i want to return the map. map* RSUserControlContainer::GetAnswers() { //UserControlInfo is a structure map mapAnswers = new map; --------------- --------------------------//Other code ----------------------------------- return mapAnswers ; } But It give some errors.So how can i return a map from a function. bhw
-
Add Scroll bar to a Static control-(pls reply)I Created a dynamic Static control using CStatic.So i need to draw controls inside the Static control. The problem is adding a Scrollbar , enable and using it. CStatic temp = new CStatic(); temp ->Create(NULL, SS_GRAYFRAME |WS_VSCROLL| SS_REALSIZECONTROL , rect, parent); So because of using WS_VSCROLL the Scroll was there but i dont know how to enable and use it.So please tell me how to do it or tell me a good web site about that. hemajith
-
Insert a dialog inside SDI(Pls reply me)I'm developing a dialog based application.Due to some issue i need to insert the dialog inside SDI.So can you pls tell me how to do that job.... Thanks a lot. bu