Thread: help!I am a NewBiez

  1. #1
    Unregistered
    Guest

    help!I am a NewBiez

    hi,i really need a help in one of my homework question. could someone in here give a hand? Thanks.....

    1. use the BITBIT function to draw a bitmap on the screen.write a program to flip the bitmap upside down.create a menu item.

    i need it as soon.....plsss..........

  2. #2
    It's full of stars adrianxw's Avatar
    Join Date
    Aug 2001
    Posts
    4,829
    Wave upon wave of demented avengers march cheerfully out of obscurity unto the dream.

  3. #3
    Unregistered
    Guest

    Unhappy it's Urgent for me!

    well,
    sorry that i don't know the rules in here. But i really don't know how to do the question? would u ppl in the board there help me?
    that is the purpose for the board. i really need help in here.

  4. #4
    It's full of stars adrianxw's Avatar
    Join Date
    Aug 2001
    Posts
    4,829
    Part of the reason for saying in the messages I linked to before, "try it yourself and then come back with specifc questions", (or similar), is knowing where to start with a reply! At this point, I don't know anything about you, have you programmed in C before? C++? Win32? You see the problem?

    You have not really asked a question. If your question is, "Will someone do my homework for me?", then the answer is no. If you have a specific question, ask it, and post your code.
    Wave upon wave of demented avengers march cheerfully out of obscurity unto the dream.

  5. #5
    the hat of redundancy hat nvoigt's Avatar
    Join Date
    Aug 2001
    Location
    Hannover, Germany
    Posts
    3,130
    >1. use the BITBIT

    The BitBlt ( notice the spelling )function performs a bit-block transfer of the color data corresponding to a rectangle of pixels from the specified source device context into a destination device context.

    BOOL BitBlt(
    HDC hdcDest, // handle to destination device context
    int nXDest, // x-coordinate of destination rectangle's upper-left corner
    int nYDest, // y-coordinate of destination rectangle's upper-left corner
    int nWidth, // width of destination rectangle
    int nHeight, // height of destination rectangle
    HDC hdcSrc, // handle to source device context
    int nXSrc, // x-coordinate of source rectangle's upper-left corner
    int nYSrc, // y-coordinate of source rectangle's upper-left corner
    DWORD dwRop // raster operation code
    );

    This is all the help we can give with the information you gave us.
    Adrianxw is right. You need to ask a specific question.
    hth
    -nv

    She was so Blonde, she spent 20 minutes looking at the orange juice can because it said "Concentrate."

    When in doubt, read the FAQ.
    Then ask a smart question.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Hi A small help:i need cprograms for these
    By pmk123 in forum C Programming
    Replies: 5
    Last Post: 03-05-2006, 09:27 AM
  2. newbiez! Helppppp
    By Irene in forum C++ Programming
    Replies: 8
    Last Post: 12-13-2001, 05:17 PM