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

    FILE data type?

    Ah, good search! That did it. For the kids at home, the FILE type actually requires a connected resource via the fopen() call. So you can't simply declare a variable of type FILE; you have to then use it to open a file. FILE *realFile = fopen(theFile, "r"); blockPrint(realFile, block...
  2. aaronvegh

    FILE data type?

    Hi there, I've got some C experience, but not a ton. I'm working on integrating a library of C code into a C project that I'm writing, but I'm stumbling on supplying a required argument because I don't have the right data type. The function signature is static void blockPrint (FILE *fp, const...
  3. aaronvegh

    Access ADO error trapping

    Hi there, I'm forced to use Access to serve a database for a large-ish site. Predicably, we're getting server errors that look like this: Microsoft OLE DB > Provider for ODBC Drivers error '8007000e' , , > [Microsoft][ODBC Microsoft Access Driver] System resource > exceeded. , , >...

Part and Inventory Search

Back
Top