Difference between revisions of "Midware TMWBuffer.Last"

From Overbyte
Jump to navigation Jump to search
(Created page with ' Main page -> Midware component reference -> TMWBuffer -> Last == Definition…')
(No difference)

Revision as of 19:24, 5 May 2011

Main page -> Midware component reference -> TMWBuffer -> Last

Definition

procedure Last;

Description

Last method will make the lsat record the current one. See also Eof, Bof, First, Last, Next and Prior methods.

Example

The following code iterate MWBuffer data starting from last record up to first record. <syntaxhighlight lang="delphi">

MWBuffer1.Last;
   while not MWBuffer1.Bof do begin
       Memo1.Lines.Add(MWBuffer1.RecordToString);
       MWBuffer1.Prior;
   end;

</syntaxhighlight>