(Jon Bell) wrote in message news:<cggcr7$130$>...
> In article < >,
> Skywise <> wrote:
> >
> >#include <time.h>
> >#include <fstream.h>
> >#include <string>
>
> <fstream.h> is not the standard header for file streams. You should use
> <fstream> instead. In general, you should never mix the "old" (really,
> ancient!) .h headers with the "new" (now six years old) standard non-.h
> headers. They can be incompatible in sneaky ways. I'm not guaranteeing
> that this is the cause of your problem, but you should fix it anyway.
> Change <time.h> to <ctime> while you're at it.
That did it. I changed all my includes to the younger include files,
and got it to work with no errors. I want to express my personal
thanks to everyone who took the time to read my code and help me work
through the code and headers. I was begining to get frustrated.
Thank you again. You made my day.
Skywise.