maxdddca123
Цитата:
Код:
procedure CurPageChanged(CurPageID: Integer);
var
i: integer;
begin
with WizardForm.ReadyMemo.Lines do
begin
if CurPageID = wpReady then
begin
Clear;
Add('Destination location:');
for i:= 0 to Page.CheckListBox.Items.Count - 1 do
begin
if Page.CheckListBox.Checked[i] then
Add(#9 + Page.CheckListBox.ItemCaption[i]);
end;
end;
end;
end;
Цитата:
Вы меня не так наверно поняли.-- действительно. не так понял. Тогда так:
Код:
procedure CurPageChanged(CurPageID: Integer);
var
i: integer;
begin
with WizardForm.ReadyMemo.Lines do
begin
if CurPageID = wpReady then
begin
Clear;
Add('Destination location:');
for i:= 0 to Page.CheckListBox.Items.Count - 1 do
begin
if Page.CheckListBox.Checked[i] then
Add(#9 + Page.CheckListBox.ItemCaption[i]);
end;
end;
end;
end;