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

> What about the properties of the detail query? That incomplete search
> query string in the Monitor is the clue...

here they are:

object qAnspr: TIB_Query
DatabaseName = 'localhost:makler3'
FieldsDisplayLabel.Strings = (
'VORNAME=Vorname'
'NACHNAME=Nachname'
'TITEL=Titel'
'GEBURTSDATUM=Geb.dat.'
'GESCHLECHT=Geschlecht'
'ANREDE=Anrede')
FieldsDisplayWidth.Strings = (
'VORNAME=133'
'NACHNAME=148'
'TITEL=86'
'GEBURTSDATUM=78'
'GESCHLECHT=150')
FieldsVisible.Strings = (
'ID=FALSE'
'PID=FALSE')
IB_Connection = dmMain.cnMain
SQL.Strings = (
'SELECT ANREDE'
' , VORNAME'
' , NACHNAME'
' , TITEL'
' , GEBURTSDATUM'
' , ID'
' , PID'
' , GESCHLECHT'
''
'FROM T_ANSPRECHPARTNER')
ColorScheme = False
DefaultValues.Strings = (
'GESCHLECHT=M'
'ANREDE=Herr')
GeneratorLinks.Strings = (
'ID=GEN_Ansprechpartner.ID')
KeyLinks.Strings = (
'T_ANSPRECHPARTNER.ID')
MasterSource = dsMakler
MasterLinks.Strings = (
'T_Ansprechpartner.PID=T_Personal.PID')
MasterSearch = True
MasterSearchFlags = [msfOpenMasterOnOpen, msfSearchMasterOnSearch, msfSearchAppliesToMasterOnly]
RequestLive = True
AfterInsert = qAnsprAfterInsert
BufferSynchroFlags = []
FetchWholeRows = True
Left = 176
Top = 536
ParamValues = (
'MLNK_PID_0=0')
end


Christian