表示不会用 delphi表示学过pascal表示写的pascal代码不能用delphi成功编译和连接表示delphi的程序代码里面的函数几乎不了解表示 目前还没有能让dekphi成功运行一个标准的pascal代码求助~~

解决方案 »

  1.   

    File->new Application->run(F9)就让dekphi成功运行一个标准的pascal代码Lz太幽默了
      

  2.   

    program first;
    var a:integer;
    begin
    a:=10;
    writeln(a);
    end.
    我用file-new-other-console application建立了一个框框写入上述代码 会报错,有时候360还要杀~~纠结死了~~
      

  3.   

    unit Unit2;interfaceuses
      Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
      Dialogs;type
      TForm2 = class(TForm)
      private
        { Private declarations }
      public
        { Public declarations }
      end;var
      Form2: TForm2;implementation{$R *.dfm}end.new一个FORM,双击进去写代码,你这代码当然不能在工程中执行了
      

  4.   


    这个是form进去的形态 晕~都变过程了~~而且这过程中参数的类型我都没见过~~这过程名字更是奇葩..中间还带点..我以前从没这样用过
    procedure TForm1.FormCreate(Sender: TObject);
    beginend;end.