Clientdataset is a different beast. you can create any dataset you like.. but its not the same as the one on the disk... unless I add another 4/5 more components to feed it..... that remains the sledge-hammer approach. :-) And almost forgot... it doesnt work with int64s

Moisis Lspez wrote:

from the delphi help....


The following code creates and activates a client dataset in the form's OnCreate event handler:


procedure TForm1.FormCreate(Sender: TObject);
begin
  with ClientDataSet1 do
  begin
    with FieldDefs.AddFieldDef do
    begin
      DataType := ftInteger;
      Name := 'Field1';
    end;
    with FieldDefs.AddFieldDef do
    begin
      DataType := ftString;
      Size := 10;
      Name := 'Field2';
    end;
    with IndexDefs.AddIndexDef do

    begin
      Fields := 'Field1';
      Name := 'IntIndex';
    end;
    CreateDataSet;
  end;
end;


i think that is.. regards, moises





At 12:43 PM 6/10/2003 +1200, you wrote:

How do I go about adding a calculated field to a grid at run-time ?  I
have tried various things - none of them work

fielddefs.add
fielddefs.addfielddef
fields.add
Regards

Rohit




---------------------------------------------------------------------------
New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED]
Website: http://www.delphi.org.nz
To UnSub, send email to: [EMAIL PROTECTED] with body of "unsubscribe delphi"
Web Archive at: http://www.mail-archive.com/delphi%40delphi.org.nz/

Reply via email to