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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: DrkPaladin
  • Content: Threads
  • Order by date
  1. DrkPaladin

    Programming Complex Equations...

    How would I program a complex equation such as: z = z^2 + c, where 'z' and 'c' are: 'real' + 'imaginary' so it would look like this: (r+i) = (r+i)^2 + (r+i)??? Please put it as simple as you can... Thanks...
  2. DrkPaladin

    Running Programs On Other Computers...

    When I try to run a MFC Application program that I made with Visual C++ on a computer that does not have C++ installed on it, I get an error that says: "A required .DLL file, MFC42D.DLL, was not found"... How would I fix this error so I may be able to run my programs on other...
  3. DrkPaladin

    Resources...

    What would be the easiest way to delete variable so I can save my resources??? Thanks.
  4. DrkPaladin

    Simple 3D Array...

    Simply, how do I create a 3D array??? Put it in very simple terms Please. Thanks.
  5. DrkPaladin

    MCIWnd Loop Music...

    How would I loop a *.mp3 file wih MCI??? This is my code: //m_Forever is a Variable type HWND m_Forever = NULL; if (m_Forever == NULL) { m_Forever = MCIWndCreate(m_hWnd, AfxGetInstanceHandle(), MCIWNDF_NOTIFYSIZE | MCIWNDF_NOERRORDLG | WS_CHILD, NULL); if (m_Forever !=...
  6. DrkPaladin

    istream operator error in MFC Application Dialog...

    I was able to save to a Binary .txt file by "overloading the operator"...This is in a MFC Application Dialog Based But when I want to load the informaton back into the Variables I get an error in the istream operator: ************************************************************...
  7. DrkPaladin

    Modeless Dialog Transfer!!! Please HELP!!!

    I need an easy way to send information from a modal dialog to a modeless dialog and take information from a modeless dialog to a modal dialog using tbe modal dialog to perform these tasks... Please Help Me... Thanks.
  8. DrkPaladin

    Get and Send Information...

    I have created a Modeless Dialog using Create() and now I want to have many Modal Dialogs Getting and Sending Information from and to that Modeless Dialog... The Modeless Dialog will just wait in the background until I exit the program... eg. //***Send*** pModeless->Variable =...
  9. DrkPaladin

    Modeless Dialog's & Data Transfer...

    I would like to create a modeless dialog that runs in the background that I can use to transfer data to and take data from it with mutliple modal dialogs... I created my Modeless Dialog using this: ////////////////////////////////////////////// CStatisticsDlg *pStats = new CStatisticsDlg()...

Part and Inventory Search

Back
Top