Click here to Skip to main content
15,901,373 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Window MDI problem Pin
AkiraOne11-Nov-05 3:24
AkiraOne11-Nov-05 3:24 
GeneralRe: Window MDI problem Pin
Lampros Giampouras11-Nov-05 3:35
Lampros Giampouras11-Nov-05 3:35 
QuestionCrystalReport replace parameter with RDC Pin
AkiraOne11-Nov-05 3:02
AkiraOne11-Nov-05 3:02 
QuestionVisual C++ Windows Forms Pin
Ciprian Cana11-Nov-05 1:22
Ciprian Cana11-Nov-05 1:22 
AnswerRe: Visual C++ Windows Forms Pin
jhwurmbach11-Nov-05 1:34
jhwurmbach11-Nov-05 1:34 
QuestionAccelerator keys are not working Pin
chakri1610-Nov-05 23:50
chakri1610-Nov-05 23:50 
AnswerRe: Accelerator keys are not working Pin
Roger Allen11-Nov-05 1:30
Roger Allen11-Nov-05 1:30 
QuestionWrite into Video Memory ? Far Pointer Pin
RadioOpa10-Nov-05 21:34
RadioOpa10-Nov-05 21:34 
In the 16Bit days you could easily access the video ram B800:0000 with far pointers. "Far" is now obsolete since all pointers are 32Bit ones.
How can I access B800:0000 in a console application now ?

In 16Bit days this worked:
unsigned far int Videospeicher = 0xB8000000;
unsigned far int *pVideoPointer;

pVideoPointer = ( unsigned far int ) Videospeicher;

for( int i = 0; i < 20; i++)
{
*pVideoPointer++ = 0x4E41;
}

-- modified at 4:04 Friday 11th November, 2005
AnswerRe: Write into Video Memory ? Far Pointer Pin
S. Senthil Kumar11-Nov-05 0:46
S. Senthil Kumar11-Nov-05 0:46 
AnswerRe: Write into Video Memory ? Far Pointer Pin
David Crow11-Nov-05 3:04
David Crow11-Nov-05 3:04 
GeneralRe: Write into Video Memory ? Far Pointer Pin
basementman11-Nov-05 8:36
basementman11-Nov-05 8:36 
Questioncan't capture captions of buttons in Win98 Pin
Elif Erkul10-Nov-05 21:33
Elif Erkul10-Nov-05 21:33 
AnswerRe: can't capture captions of buttons in Win98 Pin
Roger Allen11-Nov-05 1:32
Roger Allen11-Nov-05 1:32 
AnswerRe: can't capture captions of buttons in Win98 Pin
Lektroon14-Apr-06 2:19
Lektroon14-Apr-06 2:19 
QuestionHELP PLS: How to get WINDOWS HANDLER!! Pin
021231910-Nov-05 21:21
021231910-Nov-05 21:21 
AnswerRe: HELP PLS: How to get WINDOWS HANDLER!! Pin
ThatsAlok10-Nov-05 21:58
ThatsAlok10-Nov-05 21:58 
AnswerRe: HELP PLS: How to get WINDOWS HANDLER!! Pin
David Crow11-Nov-05 3:07
David Crow11-Nov-05 3:07 
Questionwhy breakpoint is invalid when I debug a application Pin
sude10-Nov-05 19:58
sude10-Nov-05 19:58 
QuestionRe: why breakpoint is invalid when I debug a application Pin
shivditya10-Nov-05 21:13
shivditya10-Nov-05 21:13 
AnswerRe: why breakpoint is invalid when I debug a application Pin
shivditya10-Nov-05 21:15
shivditya10-Nov-05 21:15 
AnswerRe: why breakpoint is invalid when I debug a application Pin
ThatsAlok10-Nov-05 22:48
ThatsAlok10-Nov-05 22:48 
QuestionRe: why breakpoint is invalid when I debug a application Pin
shivditya11-Nov-05 0:12
shivditya11-Nov-05 0:12 
AnswerRe: why breakpoint is invalid when I debug a application Pin
ThatsAlok11-Nov-05 0:37
ThatsAlok11-Nov-05 0:37 
GeneralRe: why breakpoint is invalid when I debug a application Pin
Roger Allen11-Nov-05 1:35
Roger Allen11-Nov-05 1:35 
GeneralRe: why breakpoint is invalid when I debug a application Pin
ThatsAlok11-Nov-05 1:43
ThatsAlok11-Nov-05 1:43 

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.