Search found 6 matches

by davidb
09.01.2007, 06:58
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Firebird (ZEOS) Master Detail - not showing all data?
Replies: 1
Views: 577

Firebird (ZEOS) Master Detail - not showing all data?

I am using Delphi, ZEOS, Firebird Created a table with an indexed field called ID Connected a Table and SQL component by MasterDetail and using this ID indexed field. Connects fine but with the DBEdits showing the data, only some of the fields in the table are showing. Its like the data is invisible...
by davidb
24.11.2006, 09:55
Forum: Bug Reports
Topic: [bug_report] FIREBIRD and NUMERIC/DECIMAL
Replies: 11
Views: 7598

OK, Set up your Query Dynamically
then in Delphi but you can convert to C++

procedure TForm1.DataSource1DataChange(Sender: TObject; Field: TField);
begin
ADODataset1St_Amount.Editmask:='#.##';
end;
by davidb
24.11.2006, 08:14
Forum: Bug Reports
Topic: [bug_report] FIREBIRD and NUMERIC/DECIMAL
Replies: 11
Views: 7598

With Delphi you can create a dynamic Query and then add the field definition.
I will see if I can code this in delphi for you, so you can get an idea.
Will get back to you.
Regards
Dave
by davidb
22.11.2006, 05:59
Forum: Bug Reports
Topic: [bug_report] FIREBIRD and NUMERIC/DECIMAL
Replies: 11
Views: 7598

I use Delphi, but I believe the concept is the same.
Right click on you Table or Query Component.
Add all the DB Fields.
Select your field and set the EditMask and FormatMask to 0.00

Your DBGrid will now display the way you want.
by davidb
22.11.2006, 01:00
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Using Zeos / Firebird - Why cant other users see new data?
Replies: 2
Views: 2007

Perfect - Thank you very much, worked a treat.
by davidb
21.11.2006, 04:51
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Using Zeos / Firebird - Why cant other users see new data?
Replies: 2
Views: 2007

Using Zeos / Firebird - Why cant other users see new data?

Hi, Could you please help me. I am using Delphi / Zeos / Firebird If I have multible users connected, the users cannot see changes to the database until the Connection is discoonected. I am using Commit etc after post. I thought that by Closing and Openeing the database would refresh the records, bu...