Welcome Guest ( Log In | Register )




                Web Hosting

 
Reply to this topicNew Topic
How To Call A Dll From Delphi, Last article I showed how to create a DLL, now we are going to learn h
Clinica do PC
post Mar 21 2008, 11:26 AM
Post #1


Newbie [ Level 1 ]
Group Icon

Group: Members
Posts: 2
Joined: 20-March 08
Member No.: 29,263


In this example, we are going to use a Form, 2 text box (which the user should enter the both real numbers) and a button. See the Source example:

unit usadll;

interface

uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls;

type
TForm1 = class(TForm)
Label1: TLabel;
Label2: TLabel;
Button1: TButton;
Edit1: TEdit;
Edit2: TEdit;
procedure Button1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
function Max(a, b : double):double;stdcall;

var
Form1: TForm1;

implementation

{$R *.DFM}

function Max(a, b : double):double;external 'MaxDLL';
procedure TForm1.Button1Click(Sender: TObject);
var
x, y, resultado : double;
begin
x := StrToFloat(Edit1.Text);
y := StrToFloat(Edit2.Text);
resultado := Max(x,y);
ShowMessage('Valor Máximo ' +FloatToStr(resultado));
end;

end.

(That's it.. Thank you)
Go to the top of the page
 
+Quote Post

Reply to this topicNew Topic
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:

 

Collapse

> Similar Topics

    Topic Title Replies Topic Starter Views Last Action
No New Posts   2 wojta 1,113 10th November 2008 - 03:31 AM
Last post by: Guest
No New Posts   16 Herbert 1,143 9th September 2008 - 07:42 PM
Last post by: Guest
No New Posts   1 overture 5,612 25th June 2008 - 08:36 AM
Last post by: iGuest
No New Posts   0 Clinica do PC 700 21st March 2008 - 02:19 AM
Last post by: Clinica do PC
No New Posts   4 oncombeureum 4,566 12th February 2008 - 03:59 AM
Last post by: iGuest
No New Posts   0 xboxrulz 370 8th December 2007 - 07:54 PM
Last post by: xboxrulz
No New Posts   1 Flawless008 445 30th November 2007 - 09:03 AM
Last post by: A13X
No New Posts   0 Chesso 653 26th October 2007 - 01:24 AM
Last post by: Chesso
No New Posts   11 hast-webben 4,115 2nd April 2007 - 08:26 PM
Last post by: juancarlosvergar
No New Posts   2 cosmic 1,006 5th December 2006 - 04:08 AM
Last post by: Chesso
No New Posts   0 cosmic 1,066 14th November 2006 - 07:13 PM
Last post by: cosmic
No New Posts   8 warbird 1,340 17th July 2006 - 09:09 AM
Last post by: BluePwNaGe
No New Posts   0 djtucker 441 19th June 2006 - 10:22 AM
Last post by: djtucker
No New Posts   3 wojta 1,519 8th June 2006 - 12:21 PM
Last post by: Chesso
No New Posts   1 evought 732 13th May 2006 - 07:10 PM
Last post by: dhanesh