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

    multiple record and rave reports

    hi i have a simple question about rave reports. i want to create 8 instances of a set of data (there are nine dataviews arranged in a particular way), with two columns of four, iyswim. now it seems i can do that by c&p where i produce 8 of the same. however, the problem there is that with...
  2. mjsof84

    suppressing paradox passwords when application loads

    hello again...last question i promise! i've got several paradox tables, one of which is a table of usernames and passwords. i have my program set up to query the users.db table when it receives input from the login form. anyway, point being that in the current state the tables are...
  3. mjsof84

    problem in Project1.dpr...urgent help required

    yeah, i know, and the prob is now fixed. i was laughing at my original error.
  4. mjsof84

    problem in Project1.dpr...urgent help required

    lol.....seriously lol. well, er, yes. thanks anyway :)
  5. mjsof84

    problem in Project1.dpr...urgent help required

    hi in a rather silly move, while attempting to fully remove a Form from my project, i started editing the project1.dpr file. however, now, it refuses to compile giving the error: [Fatal Error] Project1.dpr(5): File not found: 'Form.dcu' The full source code is this: program Project1; uses...
  6. mjsof84

    wizard/dialog creation in delphi

    thanks for that...think i'll use the tab idea
  7. mjsof84

    wizard/dialog creation in delphi

    hi. i'm (self evidently) quite new to delphi. let me explain roughly what i want to do. i have a fairly complex structure of 10 paradox tables for a ticketing system, and have written an application in delphi that allows all basic operations to be done on the tables. however, for various...
  8. mjsof84

    Hi again, thanks for all the help s

    where can I find the Quick Reports component?
  9. mjsof84

    Hi again, thanks for all the help s

    whoops..forgot to put a title there..
  10. mjsof84

    Hi again, thanks for all the help s

    Hi again, thanks for all the help so far. I'm looking for a way to print the contents of a DBGrid, either directly or through some work around. Anyone know the easiest way to do this?
  11. mjsof84

    Date manipulation

    ah, thanks for that. what i've got so far is this.. -------------------- procedure TForm1.MyProcedure; var datey: string; begin datey := datetostr(date-7); Query1.Close; Query1.SQL.Clear; Query1.SQL.Add ('SELECT First_Name, Last_Name, Date_Joined'); Query1.SQL.Add ('FROM member')...
  12. mjsof84

    Date manipulation

    Hi guys, I'm looking for a way to get today's date in delphi and then calculate the date 7 days ago from it. I then want to search through a TQuery using SQL to find any records which have a date field older than 7 days. The SQL seems simple enough...but can someone tell me the simplest way...
  13. mjsof84

    the 'case' statement and changes to the form at runtime

    thanks ever so much for that.
  14. mjsof84

    the 'case' statement and changes to the form at runtime

    what would be the syntax for envoking the procedure, and how would you declare a new procedure? just like.. procedure MyProc (Sender: TObject); ? thanks a lot
  15. mjsof84

    the 'case' statement and changes to the form at runtime

    ok.. i've got it working, kinda. however, given that i'm trying to call the change from within the same form, i need to do this.. begin section := 1; form1.Visible := false; form1.Visible := true; end; before the prog will realise it...
  16. mjsof84

    the 'case' statement and changes to the form at runtime

    right...last question today, promise. ;-) the application i'm doing requires several very different screens on the same form. to get round this i thought to set up a case statement as so.. --- case section of 0: begin Form1.MainMenu1.items[1].Enabled := False...
  17. mjsof84

    changing values in a TTable

    thanks muchly.
  18. mjsof84

    Delphi, Paradox, Database Desktop and relational databases..

    yeah, i've set up unique keys in each of the tables.
  19. mjsof84

    changing values in a TTable

    Hi again, I'm looking for how to change the value of a field in my paradox database through delphi code. given that it is possible to do form1.table1.append or form1.table1.delete, is it possible to use code to change the actual values in the fields? For example...
  20. mjsof84

    Delphi, Paradox, Database Desktop and relational databases..

    thanks for the help. i've now defined my referential integrity in DBD and it is working fine.

Part and Inventory Search

Back
Top