Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations MikeeOK on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by ITHODVGK

  1. ITHODVGK

    Im new to Visual C++, need advice.

    Hey u can do the problems in the book and try to code them urself. If problems occur consult MSDN or post in this forum.
  2. ITHODVGK

    MFC - GetPixel Doesnt Work - HELP!

    So How do I implement a GetPixel Function from an external class?
  3. ITHODVGK

    MFC - GetPixel Doesnt Work - HELP!

    In an SDI application I created a new Class, say, CTest. In one of the member functions of CTest I included the following code - void CTest::SomeFunc(...) { ... int x; int y; ... CFrameWnd* pFrame = (CFrameWnd*)(AfxGetApp()->m_pMainWnd); CMyAppView* pView...
  4. ITHODVGK

    Creating Independant Objects

    But how can I separate the implementation of the objects from their instantiation in this case. After creating the object it should automatically check its neigboring pixels and create more Spawns. This can only be done it its constructor. Do you have any other idea?
  5. ITHODVGK

    Creating Independant Objects

    I have devised a new Flood Filling Algorithm but it seems to have a problem... I have created a class Spawn ... typedef enum DIR { HORZ, VERT } DIRECTION; class Spawn { public: Spawn(void); virtual ~Spawn(void); int x; int y; DIRECTION d; Spawn(int x, int y, DIRECTION d...

Part and Inventory Search

Back
Top