Como funciona o MemoryTable da RXLib?

Delphi

13/02/2004

E ai galera, blz...

Será que alguém ai pode me explicar como funciona o componente MemoryTable do RXLib?

Valeu, Abraços...


Paulomerino

Paulomerino

Curtidas 0

Respostas

Aroldo Zanela

Aroldo Zanela

13/02/2004

Colega,

Basta soltar o componente sobre o form (ou dm), dar um duplo click e adicionar novos campos, ligar a datasource e datacontrol.

Veja o exemplo que fiz com a Jedi VCL (Incorporou a RxLib):

  object DBGrid1: TDBGrid
    Left = 100
    Top = 220
    Width = 320
    Height = 120
    DataSource = DataSource1
    TabOrder = 1
    TitleFont.Charset = DEFAULT_CHARSET
    TitleFont.Color = clWindowText
    TitleFont.Height = -11
    TitleFont.Name = ´MS Sans Serif´
    TitleFont.Style = []
  end
  object JvMemoryTable1: TJvMemoryTable
    Active = True
    Left = 42
    Top = 40
    object JvMemoryTable1teste: TStringField
      FieldName = ´teste´
      Size = 40
    end
  end
  object DataSource1: TDataSource
    DataSet = JvMemoryTable1
    Left = 148
    Top = 34
  end



GOSTEI 0
POSTAR