with TForm1.Create(nil) do
begin
  Align := alClient;
  Parent := tabsheet1;
  Visible := True;
end;

解决方案 »

  1.   

    新建几个TABSHEET就可以直接把FORM放在TABCONTROL控件上了
      

  2.   

    还是不知道:怎么把Form放进去???
      

  3.   

    把chechy的这段代码放进tabsheet1所在form1的activate事件中,
    procedure TForm1.FormActivate(Sender: TObject);
    beginwith TForm2.Create(nil) do
    begin
      Align := alClient;
      Parent := tabsheet1;
      Visible := True;
    end;在form1的unit1之uses中加入unit2,OK!
    应该可以了吧!!!
      

  4.   

    Form1 := TForm1.Create(nil)
      with Form1 do 
      begin
        Align := alClient;
        Parent := tabsheet1;
        Visible := True;
      end;
    -----------嘻嘻,设置其父为TabSheet就可以了-------------
    ----------如果不想给分,权当灌水------------------
      

  5.   

    最好使用Frame,form上面的一些消息无法正确的传递的!