Search found 5 matches

by carloszocante
13.05.2014, 14:25
Forum: ZeosLib 7.1 stable Forum
Topic: EOF dont get TRUE
Replies: 6
Views: 1186

Re: EOF dont get TRUE

It just works if I set the DBGrid's DataSource to NIL or if I remove the DisableControls. But this is not right, there is something wrong. Somebody?
by carloszocante
09.05.2014, 19:29
Forum: ZeosLib 7.1 stable Forum
Topic: EOF dont get TRUE
Replies: 6
Views: 1186

Re: EOF dont get TRUE

If I try with BOF and Prior it works. :?
by carloszocante
09.05.2014, 19:12
Forum: ZeosLib 7.1 stable Forum
Topic: EOF dont get TRUE
Replies: 6
Views: 1186

Re: EOF dont get TRUE

I checked all the events and there is nothing. And I have already tested with the latest version, and it persists.
Weird.
by carloszocante
09.05.2014, 16:17
Forum: ZeosLib 7.1 stable Forum
Topic: EOF dont get TRUE
Replies: 6
Views: 1186

Re: EOF dont get TRUE

Hello majlumbo, thanks for your reply! 1º - I call the EnableControls at the end of the code, just scroll down the bar and you will see it. 2º - Good point, I will disable the button. 3º - I tested it with the CachedUpdates = False but the problem persists. 4º - It only works if I remove both Disabl...
by carloszocante
07.05.2014, 19:10
Forum: ZeosLib 7.1 stable Forum
Topic: EOF dont get TRUE
Replies: 6
Views: 1186

EOF dont get TRUE

hello! I have been having a problem when I use Eof property: ZQuery.First; ZQuery.DisableControls; while (not ZQuery.Eof) do begin (...) ZQuery.Edit; ZQuery.FieldByName('Total').Value := Total; ZQuery.FieldByName('TotalG').Value := TotalG; ZQuery.Post; ZQuery.ApplyUpdates; Application.ProcessMessage...