RPC HELP TMult Count Example: Difference between revisions

From VistApedia
Jump to navigationJump to search
Created page with "<h2>Count Example (TMult Class)</h2> The following program code displays the number of items in a Mult class in the caption of a label when the user clicks the CountItems but..."
(No difference)

Revision as of 22:37, 3 July 2015

Count Example (TMult Class)

The following program code displays the number of items in a Mult class in the caption of a label when the user clicks the CountItems button:


   procedure TForm1.CountItemsClick(Sender: TObject);
   begin
     Label1.Caption := 'There are ' + IntToStr(Mult.Count) +
     ' items in the Mult.';
   end;