Archived Forum Post

Index of archived forum posts

Question:

problem with delphi dll

Oct 20 '12 at 22:22

when i try to start following simple vcl-application delphi xe2 ide immediately stops execution without any error message. why ?

uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, CkByteData, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls;

type TForm1 = class(TForm) Button1: TButton; procedure Button1Click(Sender: TObject); private public end;

var Form1: TForm1;

implementation

{$R *.dfm}

procedure TForm1.Button1Click(Sender: TObject); var h : HCkByteData; begin h:=CkByteData_Create; end;