Midware TMWBuffer.Last

From Overbyte
Revision as of 19:24, 5 May 2011 by Marie (talk | contribs) (Created page with ' Main page -> Midware component reference -> TMWBuffer -> Last == Definition…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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>