Click here to Skip to main content
15,899,825 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: CString, fstream with Visual Studio 2005 Pin
David Crow7-Jan-06 17:00
David Crow7-Jan-06 17:00 
GeneralRe: CString, fstream with Visual Studio 2005 Pin
Orhun Birsoy6-Jan-06 12:20
Orhun Birsoy6-Jan-06 12:20 
GeneralRe: CString, fstream with Visual Studio 2005 Pin
Michael Dunn7-Jan-06 8:25
sitebuilderMichael Dunn7-Jan-06 8:25 
GeneralRe: CString, fstream with Visual Studio 2005 Pin
Stephen Hewitt9-Jan-06 1:57
Stephen Hewitt9-Jan-06 1:57 
NewsOk Pin
pvatanpour6-Jan-06 8:34
pvatanpour6-Jan-06 8:34 
GeneralRe: Ok Pin
KellyR6-Jan-06 9:41
KellyR6-Jan-06 9:41 
GeneralRe: Ok Pin
sunit56-Jan-06 21:19
sunit56-Jan-06 21:19 
GeneralRe: Ok Pin
KellyR7-Jan-06 13:40
KellyR7-Jan-06 13:40 
GeneralRe: Ok Pin
David Crow6-Jan-06 9:47
David Crow6-Jan-06 9:47 
GeneralRe: Ok Pin
John R. Shaw6-Jan-06 18:02
John R. Shaw6-Jan-06 18:02 
QuestionHowto: creating a dynamic menu? Pin
cromag6-Jan-06 7:08
cromag6-Jan-06 7:08 
AnswerRe: Howto: creating a dynamic menu? Pin
nm_1146-Jan-06 13:39
nm_1146-Jan-06 13:39 
AnswerRe: Howto: creating a dynamic menu? Pin
Laxman96-Jan-06 18:50
Laxman96-Jan-06 18:50 
AnswerRe: Howto: creating a dynamic menu? Pin
#realJSOP7-Jan-06 3:09
professional#realJSOP7-Jan-06 3:09 
GeneralRe: Howto: creating a dynamic menu? Pin
cromag9-Jan-06 4:55
cromag9-Jan-06 4:55 
GeneralRe: Howto: creating a dynamic menu? Pin
cromag9-Jan-06 5:19
cromag9-Jan-06 5:19 
GeneralRe: Howto: creating a dynamic menu? Pin
#realJSOP9-Jan-06 12:32
professional#realJSOP9-Jan-06 12:32 
QuestionVector of Strings simple problem PLEASE HELP Pin
Cursed Feanor6-Jan-06 7:05
Cursed Feanor6-Jan-06 7:05 
AnswerRe: Vector of Strings simple problem PLEASE HELP Pin
Roland Pibinger6-Jan-06 7:33
Roland Pibinger6-Jan-06 7:33 
JokeRe: Vector of Strings simple problem PLEASE HELP Pin
Cursed Feanor6-Jan-06 8:11
Cursed Feanor6-Jan-06 8:11 
AnswerRe: Vector of Strings simple problem PLEASE HELP Pin
David Crow6-Jan-06 9:43
David Crow6-Jan-06 9:43 
AnswerRe: Vector of Strings simple problem PLEASE HELP Pin
John R. Shaw6-Jan-06 18:26
John R. Shaw6-Jan-06 18:26 
QuestionTrying to get a bmp. to move with in boundries in a windows ap.... Pin
chadsxe6-Jan-06 6:05
chadsxe6-Jan-06 6:05 
AnswerRe: Trying to get a bmp. to move with in boundries in a windows ap.... Pin
KellyR6-Jan-06 6:34
KellyR6-Jan-06 6:34 
AnswerRe: Trying to get a bmp. to move with in boundries in a windows ap.... Pin
John R. Shaw6-Jan-06 19:05
John R. Shaw6-Jan-06 19:05 
I did not study your code, bcause how you create the client area and display the bitmap is irrelivant.

You need to know where the borders are, if x or y is less than zero then the object should be bouncing in the opposit direction. That is, if left is negitive and x becomes 0 or less, then reverse the sign (which indicates direction).

If you are drawing the bitmap on the client area, then it is not possible for you to draw it any where else. If you draw a 10x10 image at {x = -10, y = -10}, then you will not see it at all. If it hits the right boarder (wall) x = 0, no problem, but if the x value becomes -1 (and you want it to bounce), then you reverse it by making x = +1.

Experiment by bouncing rectagles of the walls.


INTP
Every thing is relative...

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.