Click here to Skip to main content
16,005,169 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: ModifyMenu Not Changing Menu Pin
Jeff Elmore30-Jul-02 10:00
Jeff Elmore30-Jul-02 10:00 
GeneralRe: ModifyMenu Not Changing Menu Pin
l a u r e n30-Jul-02 10:33
l a u r e n30-Jul-02 10:33 
GeneralCase Sensitivity with CFtpConnection::SetCurrentDirectory Pin
Tony Fontenot30-Jul-02 9:26
Tony Fontenot30-Jul-02 9:26 
GeneralAPI & windows spool Pin
March'30-Jul-02 6:33
March'30-Jul-02 6:33 
GeneralRe: API & windows spool Pin
March'1-Aug-02 3:17
March'1-Aug-02 3:17 
GeneralScript error Pin
Hans Ruck30-Jul-02 6:12
Hans Ruck30-Jul-02 6:12 
GeneralURGENT: TransparentBlt PROBLEM !!! Pin
Hadi Rezaee30-Jul-02 5:49
Hadi Rezaee30-Jul-02 5:49 
GeneralRe: URGENT: TransparentBlt PROBLEM !!! Pin
KingsGambit30-Jul-02 6:08
KingsGambit30-Jul-02 6:08 
Instead of using TransparentBlt, use another technique called True Mask Method. The method is as follows,

Make a monochrome mask in which fill white to the portion where you want to hide the source bitmap. Then use BitBlt 3 times as follows:

//1. Invert and draw
BitBlt(dcDest, x, y, W, H, dcSource, x1, y1, SRCINVERT);

//2. AND with the mask
BitBlt(dcDest, x, y, W, H, dcMask, 0, 0, SRCAND);

//3. Invert again to view the final bitmap
BitBlt(dcDest, x, y, W, H, dcSource, x1, y1, SRCINVERT);

Best of luck,

Rejeesh Smile | :)

GeneralRe: URGENT: TransparentBlt PROBLEM !!! Pin
PJ Arends30-Jul-02 6:13
professionalPJ Arends30-Jul-02 6:13 
QuestionCopying all of vector elemetns to Another ??? Pin
Hadi Rezaee30-Jul-02 5:23
Hadi Rezaee30-Jul-02 5:23 
AnswerRe: Copying all of vector elemetns to Another ??? Pin
Chris Losinger30-Jul-02 5:28
professionalChris Losinger30-Jul-02 5:28 
GeneralRe: Copying all of vector elemetns to Another ??? Pin
Hadi Rezaee30-Jul-02 5:47
Hadi Rezaee30-Jul-02 5:47 
AnswerRe: Copying all of vector elemetns to Another ??? Pin
Joaquín M López Muñoz30-Jul-02 9:23
Joaquín M López Muñoz30-Jul-02 9:23 
GeneralRe: Copying all of vector elemetns to Another ??? Pin
Hadi Rezaee31-Jul-02 5:30
Hadi Rezaee31-Jul-02 5:30 
GeneralCMOnthCalCtrl Pin
Nick Jacobs30-Jul-02 5:12
Nick Jacobs30-Jul-02 5:12 
GeneralRe: CMOnthCalCtrl Pin
JennyP30-Jul-02 6:01
JennyP30-Jul-02 6:01 
Generalgarbage in last line of text read with fread.... Pin
ns30-Jul-02 4:12
ns30-Jul-02 4:12 
GeneralRe: garbage in last line of text read with fread.... Pin
Christian Graus30-Jul-02 4:17
protectorChristian Graus30-Jul-02 4:17 
GeneralWoW! That helped!!! Thanks! Pin
ns30-Jul-02 5:20
ns30-Jul-02 5:20 
GeneralRe: WoW! That helped!!! Thanks! Pin
Christian Graus30-Jul-02 12:26
protectorChristian Graus30-Jul-02 12:26 
GeneralA bunch of interesting articles! Pin
ns31-Jul-02 5:00
ns31-Jul-02 5:00 
GeneralRe: garbage in last line of text read with fread.... Pin
Rutger Ellen30-Jul-02 4:36
Rutger Ellen30-Jul-02 4:36 
GeneralRe: garbage in last line of text read with fread.... Pin
ns30-Jul-02 5:31
ns30-Jul-02 5:31 
GeneralRe: garbage in last line of text read with fread.... Pin
Roger Wright30-Jul-02 4:37
professionalRoger Wright30-Jul-02 4:37 
GeneralRe: garbage in last line of text read with fread.... Pin
ns30-Jul-02 5:34
ns30-Jul-02 5:34 

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.