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 IamaSherpa 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. googoo

    Problem reading a dBase file

    Hi guys, I am trying to read a dBase file, using c++. The following snippet of code is used to check the first byte of a dBse file (whose version is unknown): ifstream inFile("pat.dbf", ios::in|ios::binary); unsigned char dBV = 0; unsigned long id2 = 0; inFile.read(&dBV,1); //...
  2. googoo

    Open/Read dBase IV file (.dbf) and output to text in C++

    Pretty much I am trying to open a .dbf file using c++, and convert it to some meaningful, readable .txt file. Do you guys know anyplaces on the net etc that may give me a rundown on how to do this? I've had som epartial success, but for the most part I get jibberish. Thanks
  3. googoo

    customer + product IDs

    I am a form based on a query, At the moment the form displays customerID, I'd like to also add the corresponding productID, so I modified the underlying request, but because I've entered customers in my database who have not yet been given a product, therefore their productID does not yet exist...

Part and Inventory Search

Back
Top