Home End User
New Blog Posts: Merging Reports - Part 1 and Part 2

Setting cursor in the custom report explorer form.

edited July 2003 in End User
Hi,
How can I set the cursor on the custom report explorer form to the one I
want?
I have even tried the following code, but to no avail. Can you help me
please?

var
i :Integer;
begin
for i:=0 to Self.ComponentCount-1 do begin
if Self.Components[i] is TControl then
TControl(Self.Components[i]).Cursor:=crDefault;
end;
Self.Cursor:=crDefault;
Application.ProcessMessages;
end;

Thanks,
MB.

Comments

This discussion has been closed.