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 strongm 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: *

  1. DrkPaladin

    Programming Complex Equations...

    Sorry, but I didn't understand any of it... For the equation: z = z^2 + c I was able to calculate it like this: r2 and i2 the user gives the values for r and i are x and y values on a complex plain r3 = (r2 * r2) + (-(i2 * i2)); i3 = (i2 * r2) + (i2 * r2); r5 = r3 + r; i5...
  2. 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...
  3. DrkPaladin

    Running Programs On Other Computers...

    Thanks, now it works...
  4. DrkPaladin

    Running Programs On Other Computers...

    How would I build a release version??? Thanks.
  5. 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...
  6. DrkPaladin

    Resources...

    Please help... Only 3 days left... Thanks.
  7. DrkPaladin

    Resources...

    Most of my dialogs(15 dialogs) have about 10 variables(different name but same purpose)... There's is one that I use a lot that has about 50 variables... It's this one that takes up all my Resources(Memory). I go from dialog to dialog constantly... Thanks.
  8. DrkPaladin

    Resources...

    I can't use delete Variable because they are not pointers... I have many variables and they use up too much of my resources... I need a way to save my resources so I do not run out of memory... Thanks.
  9. DrkPaladin

    Resources...

    Please Help, I do not have much time left...(5 Days)
  10. DrkPaladin

    Resources...

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

    Simple 3D Array...

    Thanks a lot, this should help me greatly...
  12. DrkPaladin

    Simple 3D Array...

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

    MCIWnd Loop Music...

    Can anybody tell me how to loop the audio file???
  14. DrkPaladin

    istream operator error in MFC Application Dialog...

    Because it is a ioperator shoudln't the arrow be '>>'??? I'm loading the information from the file to the variables... I tried what you said to do; it did get rid of the error but the information does not get loaded... Thanks.
  15. DrkPaladin

    MCIWnd Loop Music...

    Loop any audio or video...
  16. 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 !=...
  17. 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: ************************************************************...
  18. DrkPaladin

    How do I disable a button.....?

    CButton* pButton = (CButton*)GetDlgItem(IDC_BUTTON1); pButton->EnabledWindow(FALSE);
  19. DrkPaladin

    drawing circle on a dialog box

    Add the this code to your 'myCircle' function: //////////////////////////////////////////////////////////// CClientDC dlgDC(this);//Device Context CPen penRed(PS_SOLID, 2, RGB(255, 0, 0));//Define Pen&colour dlgDC.SelectObject(&penRed);//Select the pen CBrush brGreen(RGB(0, 255, 0));//Define...

Part and Inventory Search

Back
Top