On Tue, 13 Jun 2000, Alex Kouznetsov wrote:
> If so, then can anyone point me to an example or any information on how to
> create and embed frames at run-time. All I could find in Delphi help was
> that frame has to be _dropped_ onto the form.
I just did a quick frame test earlier this moring:
procedure Form1Button1Click(Sender: TObject);
var
f: TFrame2;
begin
f := TFrame2.Create(Self);
f.Parent := TabSheet2;
f.Align := alClient;
end;
--
I am naked, hear me purr.
Now Playing: embodyment - ballad
---------------------------------------------------------------------------
New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED]
Website: http://www.delphi.org.nz
- RE: [DUG]: Changing main form at run-time Myles Penlington
- Re: [DUG]: Changing main form at run-time patrick . dunford
- Re: [DUG]: Changing main form at run-time Alex Kouznetsov
- Re: [DUG]: Changing main form at run-time patrick . dunford
- Re: [DUG]: Changing main form at run-time Alex Kouznetsov
- Re: [DUG]: Changing main form at run-time Bevan Edwards
- Re: [DUG]: Changing main form at run-t... Rohit Gupta
- Re: [DUG]: Changing main form at run-t... Alex Kouznetsov
- Re: [DUG]: Changing main form at ... Mark Derricutt
- Re: [DUG]: Changing main form... Alex Kouznetsov
- Re: [DUG]: Changing main ... Mark Derricutt
- Re: [DUG]: Changing main ... Alex Kouznetsov
- Re: [DUG]: Changing main ... Mark Derricutt
