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 strongm 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. PremiumL

    Problem with a database

    Dave, I did that and I got an error that says too few arguments. What should I do?
  2. PremiumL

    Problem with a database

    I have a database called mail.dbf. I need to delete zip codes that end in an odd number (ex: 1,3,5,7 & 9). How do I only keep zip codes that end in an Even number. Keep in mind that the zip code field is called zip and is only 5 characters long. Thanks for the help, Jarrett
  3. PremiumL

    Append Program

    I try to run that program but it says alias not found. What should I do? Thanks for the help. Thanks, Jarrett
  4. PremiumL

    Append Program

    I have 2 databases. Mail.dbf Phone.dbf I need to match the address and zip code field in mail.dbf to phone.dbf. When I get a match, I need the program to append the phone number field (field is called phone) from phone.dbf to mail.dbf. The address and zip code fields are called address and...
  5. PremiumL

    Database Question

    I'm a newbie to Foxdos. What commands do I need to put in the program in order to do that? Thanks for your help, Jarrett
  6. PremiumL

    Database Question

    I have 2 databases. Mail.dbf Master.dbf Basically, both of these databases have the same layout. They both have a field called contact (which is filled with people's names). The contact field in mail.dbf is blank. I need a program that will match up the phone numbers in both databases...
  7. PremiumL

    Can't figure out how to send a POST request.

    Unfortunately, I don't know PERL. I'm using C/C++.
  8. PremiumL

    Can't figure out how to send a POST request.

    I need to write a program that sends HTTP POST requests to navigate a website and retrieve data from it. I'm currently testing using the following website: http://www.htmlcodetutorial.com/forms/_FORM_METHOD_POST.html The site sends me a 400 error when sending the following request: Is my...
  9. PremiumL

    Duplicate programming question

    I have 2 databases. 1. Master.dbf 2. New.dbf Both databases have the same layout. I need a program that will take the address field (called address) and zip code field (called zip) and see if it matches the records in the master.dbf. If there are duplicates, I want to have them deleted out...
  10. PremiumL

    copy a programs results to a text file

    I have a program that runs a state count for a database called mail.dbf. This is the program: SELECT STATE, COUNT(STATE) AS HOWMANY; FROM MAIL.DBF; GROUP BY STATE; ORDER BY STATE; How can I copy the results to a text file? Thanks for your help, Jarrett

Part and Inventory Search

Back
Top