05-01-2018, 12:19 PM
Hello,
could you please help me on how to iterate over all forms included in the application.
Code above lists only active or already opened forms. Forms that were not opened are not listed.
Regards,
Tomaž
could you please help me on how to iterate over all forms included in the application.
Code:
// for i:=0 to UserSession.WebApplication.FormCount-1 do
for i:=0 to WebApplication.FormCount-1 do
begin
OutputDebugString(PChar(WebApplication.Forms[i].Name));
end;
Code above lists only active or already opened forms. Forms that were not opened are not listed.
Regards,
Tomaž