Subject | A very trivial problem |
---|---|
Author | Heri |
Post date | 2002-03-07T04:48:49Z |
Hi
My TestApp has on the main form (from the dfm file):
object IB_Connection1: TIB_Connection
DatabaseName = 'KULTINFO'
end
object IB_Query1: TIB_Query
DatabaseName = 'KULTINFO'
IB_Connection = IB_Connection1
SQL.Strings = ('Select CREATED from OBJEKT;')
end
object IB_DataSource1: TIB_DataSource
Dataset = IB_Query1
end
object IB_Text1: TIB_Text
DataField = 'CREATED'
DataSource = IB_DataSource1
end
object IB_Grid1: TIB_Grid
DataSource = IB_DataSource1
TabOrder = 0
end
object IB_LookupCombo1: TIB_LookupCombo
DataSource = IB_DataSource1
DisplayField = 'CREATED'
end
object IB_LookupList1: TIB_LookupList
DataSource = IB_DataSource1
end
object IB_ComboBox1: TIB_ComboBox
DataField = 'CREATED'
DataSource = IB_DataSource1
end
object IB_ListBox1: TIB_ListBox
DataField = 'CREATED'
DataSource = IB_DataSource1
end
If I open the query (very simple one, only 3 records), I can see data in all controls, but not in the TIB_ListBox.
What must I do in order to see the 3 records in the ListBox too?
TIA.
Heri Bender
(4.2.Ga, D5Pro, NT4.06a)
[Non-text portions of this message have been removed]
My TestApp has on the main form (from the dfm file):
object IB_Connection1: TIB_Connection
DatabaseName = 'KULTINFO'
end
object IB_Query1: TIB_Query
DatabaseName = 'KULTINFO'
IB_Connection = IB_Connection1
SQL.Strings = ('Select CREATED from OBJEKT;')
end
object IB_DataSource1: TIB_DataSource
Dataset = IB_Query1
end
object IB_Text1: TIB_Text
DataField = 'CREATED'
DataSource = IB_DataSource1
end
object IB_Grid1: TIB_Grid
DataSource = IB_DataSource1
TabOrder = 0
end
object IB_LookupCombo1: TIB_LookupCombo
DataSource = IB_DataSource1
DisplayField = 'CREATED'
end
object IB_LookupList1: TIB_LookupList
DataSource = IB_DataSource1
end
object IB_ComboBox1: TIB_ComboBox
DataField = 'CREATED'
DataSource = IB_DataSource1
end
object IB_ListBox1: TIB_ListBox
DataField = 'CREATED'
DataSource = IB_DataSource1
end
If I open the query (very simple one, only 3 records), I can see data in all controls, but not in the TIB_ListBox.
What must I do in order to see the 3 records in the ListBox too?
TIA.
Heri Bender
(4.2.Ga, D5Pro, NT4.06a)
[Non-text portions of this message have been removed]