Subject Re: [IBO] Problem with Search Mode
Author Christian Gütter
Hello Helen,

> Could be. Have you looked at the MasterSearch and MasterSearchFlags
> properties at all?

Yes, I have. I have played with them in the detail query but
the error was the same.

BTW, I have set up a test form with a simple query and
searching works like a charm. I seems that something is
wrong with my IB_Query.

I will try to disable the master-detail stuff and see
what happens.


Christian



PS: BTW, these are the properties of my query:

object qMakler: TIB_Query
ColumnAttributes.Strings = (
'AUSNAHME=BOOLEAN=J,N'
'GESCHLECHT=BOOLEAN=M,W'
'IST_FIRMA=BOOLEAN=J,N')
DatabaseName = 'localhost:makler3'
FieldsDisplayLabel.Strings = (
'IST_FIRMA=Firma'
'ANREDE=Anrede'
'GESCHLECHT=Geschlecht')
FieldsVisible.Strings = (
'ANMERKUNG=FALSE')
IB_Connection = dmMain.cnMain
SQL.Strings = (
'SELECT *'
'FROM T_PERSONAL')
ColorScheme = False
DefaultValues.Strings = (
'GESCHLECHT=M')
KeyLinks.Strings = (
'T_PERSONAL.ID')
MasterSearchFlags = []
OrderingItemNo = 1
OrderingItems.Strings = (
'FIRMA=FIRMA;FIRMA DESC')
OrderingLinks.Strings = (
'FIRMA=ITEM=1')
RequestLive = True
SearchedDeletes = False
SearchingLinks.Strings = (
'T_Personal.FIRMA=FIRMA')
BeforePost = qMaklerBeforePost
BufferSynchroFlags = []
FetchWholeRows = True
Left = 56
Top = 536
end