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. ross12

    C++ Math question

    http://www.cuj.com/articles/2001/0111/0111b/0111b.htm?topic=articles this should help you....
  2. ross12

    Any mathematical insight???

    If I am not wrong your problem is a combinatorial problem. There is a large number of solutions and as the weeks go by some solutions become taboo, in other words cannot be used again. I have used AI methods to solve hard problems in the arena of 2D nesting and can see some similarities...
  3. ross12

    Crystal Reports/VC++ problems

    Please dont forget your name!
  4. ross12

    HELP WITH EXAM!!

    Hope this helps.... #include "stdio.h" #include "iostream.h" #define PI 3.141592654 float CalculateCylinderVolume (const float& diametre, const float& height); void main() { // Declare local variables float diametre; float height; float volume; // Obtain cylinder...
  5. ross12

    Modeless CDialog

    I think you need to use MoveWindow call to ensure your window has some size. Perhaps you also need to call ShowWindow(SW_SHOW)... not sure about the SW_SHOW... look it up. so... pADlg->Create(this); pADlg->MoveWindow(....); pADlg->ShowWindow(...); // maybe u wont need this hope this helps

Part and Inventory Search

Back
Top