I have created a record to store information in response to questions. Is there a way that I can loop through each attribute of the record and see if there's a value?
for instance, if I have:
is there a way to loop through the record and see that Name and InterviewDate are completed, but Interviewer is not?
thanks for any insight!
Leslie
for instance, if I have:
Code:
FInterview : Record
Name : string;
InterviewDate : Tdate;
Interviewer : string;
...
CurrentInterview := FInterview;
...
CurrentInterview.Name := eName.Text
CurrentInterview.InterviewDate := Today();
...
is there a way to loop through the record and see that Name and InterviewDate are completed, but Interviewer is not?
thanks for any insight!
Leslie