Click here to Skip to main content
15,895,370 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Function with default argument Pin
vikramlinux1-Mar-06 23:13
vikramlinux1-Mar-06 23:13 
GeneralRe: Function with default argument Pin
toxcct1-Mar-06 23:16
toxcct1-Mar-06 23:16 
GeneralRe: Function with default argument Pin
Lim Bio Liong2-Mar-06 0:15
Lim Bio Liong2-Mar-06 0:15 
GeneralRe: Function with default argument Pin
toxcct2-Mar-06 0:19
toxcct2-Mar-06 0:19 
GeneralRe: Function with default argument Pin
Stephen Hewitt1-Mar-06 23:18
Stephen Hewitt1-Mar-06 23:18 
AnswerRe: Function with default argument Pin
Nibu babu thomas1-Mar-06 23:23
Nibu babu thomas1-Mar-06 23:23 
GeneralRe: Function with default argument Pin
Stephen Hewitt2-Mar-06 1:49
Stephen Hewitt2-Mar-06 1:49 
Questionhow to show GIF image on a picture box Pin
baldha rakesh1-Mar-06 22:55
baldha rakesh1-Mar-06 22:55 
AnswerRe: how to show GIF image on a picture box Pin
toxcct1-Mar-06 23:01
toxcct1-Mar-06 23:01 
Questionhow to load bitmap on picture ctrl Pin
baldha rakesh1-Mar-06 22:03
baldha rakesh1-Mar-06 22:03 
AnswerRe: how to load bitmap on picture ctrl Pin
Nibu babu thomas1-Mar-06 22:13
Nibu babu thomas1-Mar-06 22:13 
GeneralRe: how to load bitmap on picture ctrl Pin
baldha rakesh1-Mar-06 23:02
baldha rakesh1-Mar-06 23:02 
GeneralRe: how to load bitmap on picture ctrl Pin
Nibu babu thomas1-Mar-06 23:05
Nibu babu thomas1-Mar-06 23:05 
GeneralRe: how to load bitmap on picture ctrl Pin
baldha rakesh1-Mar-06 23:42
baldha rakesh1-Mar-06 23:42 
GeneralRe: how to load bitmap on picture ctrl Pin
Nibu babu thomas1-Mar-06 23:45
Nibu babu thomas1-Mar-06 23:45 
GeneralRe: how to load bitmap on picture ctrl Pin
baldha rakesh2-Mar-06 0:02
baldha rakesh2-Mar-06 0:02 
GeneralRe: how to load bitmap on picture ctrl Pin
Nibu babu thomas2-Mar-06 0:04
Nibu babu thomas2-Mar-06 0:04 
GeneralRe: how to load bitmap on picture ctrl Pin
sunithakiranmaye2-Mar-06 18:54
sunithakiranmaye2-Mar-06 18:54 
AnswerRe: how to load bitmap on picture ctrl Pin
janisha1-Mar-06 22:20
janisha1-Mar-06 22:20 
AnswerRe: how to load bitmap on picture ctrl Pin
_AnsHUMAN_ 1-Mar-06 23:19
_AnsHUMAN_ 1-Mar-06 23:19 
Set the type of button as bitmap and perform the following :
(here m_bit is an object of CBitmap , m_btnStart is the variable for CBitmapButton)
m_bit1.LoadBitmap(IDB_BMPSTART);
HBITMAP hBit1 = (HBITMAP) m_bit1.GetSafeHandle();
m_btnStart.SetBitmap(hBit1);
// Use m_btnStart.SizeToContent() if you want to set the size of the button to that of the image being displayed on it
(open the resource editor and copy the .gif image to the bitmap image in the resource editor)
*******and yes on the picture control you have to set the type as bitmap and pass the image name of the bitmap in the IMAGE option of resource editor

Vision is Always important and so is your ATTITUDE.

Wishes.

Anshuman Dandekar


-- modified at 5:31 Thursday 2nd March, 2006
QuestionLaunching 3rd party application from MFC Button Pin
amanoullah1-Mar-06 22:02
amanoullah1-Mar-06 22:02 
AnswerRe: Launching 3rd party application from MFC Button Pin
Cedric Moonen1-Mar-06 22:11
Cedric Moonen1-Mar-06 22:11 
AnswerRe: Launching 3rd party application from MFC Button Pin
_AnsHUMAN_ 1-Mar-06 22:14
_AnsHUMAN_ 1-Mar-06 22:14 
AnswerRe: Launching 3rd party application from MFC Button Pin
Cool Ju1-Mar-06 22:22
Cool Ju1-Mar-06 22:22 
QuestionCalling Crystal Reports 11 from VC++ Pin
xdeveloper_del1-Mar-06 21:42
xdeveloper_del1-Mar-06 21:42 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.