cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
skr
Level 6

How to use GetObjectCount

Hi

Does anyone have an example of how GetObjectCount can be used?

Regards Søren
Labels (1)
0 Kudos
(1) Reply
RobertDickau
Flexera Alumni

It just tells you how many InstallScript Objects are contained in your InstallScript project:
function OnBegin( )
begin
SprintfBox(INFORMATION, "Object Count",
"Your project has %d object(s) in it...", GetObjectCount( ));
end;
0 Kudos