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 Mike Lewis 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. pForce

    newbie-where to start?

    Why would you want to use MFC? Do you like add bloat to your programs? Be my guest.
  2. pForce

    Time specific text

    Make an array of the text's you want to display. Create a Date object. The getDay, getHours, and getMinutes methods will be useful. Use lots of logic-related statements. Write to document as needed.
  3. pForce

    newbie-where to start?

    Programming Windows (third edition, I think) by Charles Petzold is what you might be looking for. It's considered to be one of *the* books on Windows programming. Since you've already had years of C++ experience, this would be your next logical step. Edit: Oops ...
  4. pForce

    newbie-where to start?

    <i>Programming Windows</i> (third edition, I think) by Charles Petzold is what you might be looking for. It's considered to be one of *the* books on Windows programming. Since you've already had years of C++ experience, this would be your next logical step.
  5. pForce

    I can't figure out this loop

    Hm. You have an interestingly sadistic instructor? Oh well. I tried twice, and failed both times. The stop value, in my programs, was to what number the loop would iterate to, before exiting the loop (obviously).
  6. pForce

    I can't figure out this loop

    What about this? int n1 = 1, n2 = 1, stopValue = 20, numOfColumns = 3; for (; n1 <= stopValue; n1++) { for (; n2 <= numOfColumns; n2++) { cout << setw(2) << n1 * n2 << &quot; &quot;; } n2 = 1; cout << endl; }
  7. pForce

    C++ question (very simple question)

    No it won't help you. The goto is not something you should ever, ever use in programming. It is considered sloppy and poor programming practice.
  8. pForce

    I can't figure out this loop

    What is the fascination with using two numbers? The very same table can be printed with just two lines of C++ code. Perhaps ... for (int n1 = 1; n1 <= 20; n1++) cout << setw(2) << n1 << &quot; &quot; << setw(2) << n1 * 2 << &quot; &quot; << setw(2) << n1 * 3 << endl; does not...
  9. pForce

    Video issue driving me insane

    I'm building a computer for a friend, and I have to come to a difficult impasse. Here's my problem. I starting buidling the computer, and everything goes pretty well. I assemble the basic skeleton of the motherboard, memory, CPU, floppy drive and video card, and place it into the case, and...

Part and Inventory Search

Back
Top