Rank: Administration
Groups: AcademicCoachingSchool, admin, Administration, BookSeller, CatholicSchool, CoachingAdult, CoachingProfessional, CoachingSports, ExtraCurriculumCoaching, IndependentSchool, Moderator, MusicTeacher, PrivateSchool, PublicSchool, SelectiveSchool, tutor Joined: 23/11/2008(UTC) Posts: 523
|
Delphi calculated field and OncalcFields eventYour TDataSet, Ttable or TQuery has AutoCalcFields property set to try, by the event OnCalcFields didn't fire. In the case of a query, you opened the query Code:query1.open;
while not query1.EOF do
query1.next;
You may have missed the definition of the calculated filed, eg. Code: object TblDevDesc: TStringField
FieldKind = fkCalculated
FieldName = 'Desc'
Size = 40
Calculated = True
end
TQuery example:Code: object Query1: TQuery
AfterScroll = Query1AfterScroll
OnCalcFields = Query1CalcFields
DatabaseName = 'ARESLITEDB'
SQL.Strings = (
...
}
object TblDevDesc: TStringField
FieldKind = fkCalculated
FieldName = 'Desc'
Size = 40
Calculated = True
end
Edited by user Wednesday, 5 April 2017 10:48:40 PM(UTC)
| Reason: Not specified
|
|
|
|
Forum Jump
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.