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 biv343 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. speedycode

    How to draw basic shapes?

    To draw any many sided figure, set up an array of POINT structures that hold the coordinates of the vertices. Then in your WM_PAINT case, use MoveTo() (could be MoveToEx() - check your Win32 API manual) with the first coordinate to start off. Then do a for loop over the remaining points with...
  2. speedycode

    Any site with lots of C++ applications with source?

    The Code Project has quite a bit, usually with explanatory articles.
  3. speedycode

    C++ Windows Forms?

    The only requirement would be for use with the .NET Framework which needs Managed C++. If you don't want to use the Framework, VS also lets you use MFC or write directly to the Windows API like in olden times. Cheers.

Part and Inventory Search

Back
Top