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 Wanet Telecoms Ltd 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 tdsman

  1. tdsman

    Advice for a newbie plz

    www.codeguru.com great for Q & A and also lots of articles www.codeproject.com tons of beginner tutorials
  2. tdsman

    A dialog

    Assertion Errors are often times the result of NULL pointers. Are you possibly pointing to a handle window that doesn't exist? Assuming you've created a dialog w/ project wizard called CMyDialog... From project wizard generated code CMyDialog myDi int nResponse = myDi.DoModal(); if...
  3. tdsman

    How to get the handle to backgroud window

    You could use the FindWindow() function if you've got the window title. CWnd* pWndBack; CString sTitle; sTitle.LoadString(_T("The Back Ground Window Title")); pWndBack = CWnd::(FindWindow(NULL,sTitle)); if(pWndBack) { //TODO: Do Stuff with my window...

Part and Inventory Search

Back
Top