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...
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...
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...
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...
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?
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')...
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...
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
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...
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...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.