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 TouchToneTommy 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: *

  • Users: Joell
  • Order by date
  1. Joell

    Which database to use?

    Hi all, I have been asked to develop a small system that is to be used on 1-2 Win2000 computers. The problem is I cant decide which database I should couple with Delphi. I have used Database Desktop 7 (Paradox Tables) with my other Delphi applications before and had quite a few problems...
  2. Joell

    Reset an autoincrement value

    Any ideas as to how i could reset an antoincrement value for paradox tables? I've tried the minimun value 'thing' through database desktop and it doesnt work. Cheers, jOeLL
  3. Joell

    Search Database using SQL Query

    Ah-ha. The QuotedStr thingy works. Thanks =) Joell
  4. Joell

    Search Database using SQL Query

    Forget SQL. I'm off using the filter property of a TTable. Just another quick question though, instead of the user having to type in '' when searching for a value, is there any way it can be embedded in the code. What I've got now is Table1.Filter:=combobox1.Text+ combobox3.text+ edit1.text...
  5. Joell

    Search Database using SQL Query

    I have got a few ComboBoxes that contain the fields of a table (GetFieldNames) and edit boxes that allows the user the key in the value(s) corresponding to the Field selected in the combo box. Is there a way the values of these comboboxes and editboxes be embedded in a SQL Query? For example...
  6. Joell

    Backup paradox table using delphi

    I've got a couple of paradox tables that i access through the BDE. Is there any way i can backup or archive these tables through coding using delphi Cheers, Joell
  7. Joell

    Could I create a Word Document in Delphi ?

    Try this //include ComObj in the uses clause procedure TForm1.Button1Click(Sender: TObject); var Word: variant; begin Word := CreateOleObject('Word.Application'); Word.Documents.Add; Word.Visible := True; end; It opens up a new word document if thats what you're after Joell
  8. Joell

    Could I create a Word Document in Delphi ?

    Try this //include ComObj in the uses clause procedure TForm1.Button1Click(Sender: TObject); var Word: variant; begin Word := CreateOleObject('Word.Application'); Word.Documents.Add; Word.Visible := True; end; It opens up a new word document if thats what you'are after Joell
  9. Joell

    Post deleted data from one table to another

    I was actually trying to do it using Delphi as my paradox tables are accessed through the BDE. I am probably looking at capturing and transferring each record to another table as it is deleted. What I've got at the moment is deleting the current record: procedure...
  10. Joell

    Post deleted data from one table to another

    How do i post data that i've deleted from one table to another table for record purposes?

Part and Inventory Search

Back
Top