Search:

Type: Posts; User: limacat

Search: Search took 0.00 seconds.

  1. Thank you very much novacain. I owe you a beer...

    Thank you very much novacain. I owe you a beer (If you like beers that is :) ).
  2. So you mean something like... CPen tempPen...

    So you mean something like...



    CPen tempPen = dc.GetCurrentPen();
    dc.RemoveObject(tempPen);
    dc.SelectStockObject(WHITE_PEN);


    ?
  3. GDI: Creating a pen VS taking it as a stock object.

    Hi there. I am studying some Visual C++ MFC programming just to understand some GUI programming in Windows.

    Mind you that my environment is Visual Studio 6, and I'm following the book "Learn...
  4. Replies
    3
    Views
    1,078

    Re: more trouble with functions

    Actually this code doesn't change the numX variables. You have to use the pass by reference mechanism...


    void numbers(&int, &int, &int, &int);

    int numbers(int num1, int num2,
    int...
  5. Replies
    3
    Views
    1,704

    Hi, I am new to the board :) Anyway, you could...

    Hi, I am new to the board :)
    Anyway, you could always do a check for timer. If it's < 10 you print 0%d (that's a zero). If it's > 10, you print %d...



    '
    do {
    if (timer < 10) {
    printf(...
Results 1 to 5 of 5