Yes I got . Thanks a lot. Saday Chand Sarkar Trek Technology(s)Pte.Ltd. -- modified at 3:04 Thursday 8th June, 2006
Saday Sarkar
Posts
-
About Edit box -
About Edit boxHi all, I need to change the font of Edit box , But I have no idea how to do it.PLz help. Thanks to all Saday Saday Chand Sarkar Trek Technology(s)Pte.Ltd.
-
pointer [modified]int * p ; //"say the locations are 1000 and 1001."-it's ok.. //that means The locations 1000 and 1001 are rady to hold address //of an integer. If write *p=2; //means you are trying to assign integer value on the address //which is store on 1000 and 1001. //So it will cause acess violation.at run time. // we can do this after assign p=&j; p=&j; //Then *p=2; //means the Now 1000 and 1001 is holding the address of "j"; //And the value of that Address will be 2; //Now *p and j will print the same value. Saday Chand Sarkar Software Engineer Trek Technology(s)Pte.Ltd.
-
File Opening problemBe sure str is being "c:\folder\folder\file.ext " or not. U may have to make str to "c:\folder\folder\file.ext " "c:\\folder\\folder\\file.ext " chk ur String making Calculation.....:) Saday Chand Sarkar Software Engineer Trek Technology(s)Pte.Ltd.
-
How can I use LoadBitmap() for loading a bitmap no buttonYes I've got. I've not do"the button in the dialog has the ownerdrawn property set to TRUE " Now ok. Very Very Thanks.
-
How can I use LoadBitmap() for loading a bitmap no buttonOk I've got . Very very Thanks
-
How can I use LoadBitmap() for loading a bitmap no buttonStill now I'm not geting the result. PLz help. I am using dialog base. I take a button. Then create member m_button of the button. ------------------------------------------------------------------ CBitmapButton m_button;//at constractor ------------------------------------------------------------------- DDX_Control(pDX, IDC_BUTTON1, m_button);(at DoDataExchange) ------------------------------------------------------------------- I've import bitmaps mamed IDB_UP, IDB_DOWN, IDB_FOCUS, IDB_DISABLE then using .... ------------------------------------------------------------------- m_button.LoadBitmaps("IDB_UPU", "IDB_DOWND", "IDB_FOCUSF", "IDB_DISABLEX"); ----------------------------------------------------------------------- Q1> How can i give the property "WS_CHILD|WS_VISIBLE|BS_OWNERDRAW". Q2> If i use Autoload() then how i can give names of Bitmaps? Very Very thanks.
-
How can I use LoadBitmap() for loading a bitmap no buttonBut if I replace the parameter "pParentWnd" by "this" the button is not showing. To Show that what I have to do? ------------------------------------------------------------------ CBitmapButton myButton; myButton.Create(NULL, WS_CHILD|WS_VISIBLE|BS_OWNERDRAW, CRect(10,10,100,100), this, 1); // Load the bitmaps for this button. myButton.LoadBitmaps(IDB_UPU, IDB_DOWND, IDB_FOCUSF, IDB_DISABLEX); ------------------------------------------------------------------ plz help. Thank u. -- modified at 4:10 Thursday 29th December, 2005
-
How can I use LoadBitmap() for loading a bitmap no buttonI am new in vc++ world. I want to give a bit map on a button . I'm using CBitmapButton::LoadBitmap(); but it is not loaded.Giving error is:"Failed to load bitmap for normal image." Can any one help by giving proper method to do that. Thank to all THE CODE PROJECT users.