Thread: Simple problem

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Banned
    Join Date
    Aug 2010
    Location
    Ontario Canada
    Posts
    9,547
    Well, first of all if you're going to be installing that on multiple computers... you really need to spike it up with proper error checking, input vetting and range checking. No offense, but what often looks ultra simple, turns out to be far more complicated than beginning programmers seem to realize. Of all the programs I've written (about 90% GIU code) the console code gives me the most trouble.

    If you proceed, I strongly recommend setting it up in a loop so the operator sees something like ...

    "How many boxes in the shipment (0 to exit) : "

    There are some user interface guidelines I've acquired over the years... The big one is... never expect your users to be smart; if a senile Orangutan can't run it without errors, it's too complex.

  2. #2
    Registered User
    Join Date
    Mar 2011
    Posts
    42
    Quote Originally Posted by CommonTater View Post
    Well, first of all if you're going to be installing that on multiple computers... you really need to spike it up with proper error checking, input vetting and range checking. No offense, but what often looks ultra simple, turns out to be far more complicated than beginning programmers seem to realize. Of all the programs I've written (about 90% GIU code) the console code gives me the most trouble.

    If you proceed, I strongly recommend setting it up in a loop so the operator sees something like ...

    "How many boxes in the shipment (0 to exit) : "

    There are some user interface guidelines I've acquired over the years... The big one is... never expect your users to be smart; if a senile Orangutan can't run it without errors, it's too complex.
    Thanks Tater, I need to clean it up first. As you said it may be simple, but to give it out to others it needs work first..

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Simple program, simple problem
    By KAUFMANN in forum C Programming
    Replies: 5
    Last Post: 02-16-2011, 01:16 PM
  2. Simple program...simple problem?
    By deadherorising in forum C Programming
    Replies: 2
    Last Post: 03-12-2009, 08:37 PM
  3. Such a simple problem
    By swgh in forum C++ Programming
    Replies: 2
    Last Post: 10-31-2008, 06:23 AM
  4. Simple program, not so simple problem
    By nolsen in forum C++ Programming
    Replies: 2
    Last Post: 01-18-2008, 10:28 AM
  5. Simple OO Problem
    By bstempi in forum C++ Programming
    Replies: 1
    Last Post: 04-30-2004, 05:33 PM