DLL em WEB
Pessoal tô querendo fazer uma DLL que possa ser registrada em um servidor Web. Porém quando eu tô compilando o projeto tá dando o seguinte erro:
[b:372a8f7fcb]Cannot debug project uless a host application is defined. Use the Run|Parameters...[/b:372a8f7fcb]
O que eu coloco nos parâmetros em:
Host Application:
Work Directory:
Meu projeto:
---------------------------------------
library exemplo;
uses
SysUtils,
Classes;
function teste (texto : String) : String; stdcall; export;
var t: string;
begin
t := ´<html>´ + chr(13);
t := t + ´<body>´ + chr(13);
t := t + texto;
t := t + ´</body>´ + chr(13);
t := t + ´</html>´ + chr(13);
end;
exports
teste index 1;
begin
end.
[b:372a8f7fcb]Cannot debug project uless a host application is defined. Use the Run|Parameters...[/b:372a8f7fcb]
O que eu coloco nos parâmetros em:
Host Application:
Work Directory:
Meu projeto:
---------------------------------------
library exemplo;
uses
SysUtils,
Classes;
function teste (texto : String) : String; stdcall; export;
var t: string;
begin
t := ´<html>´ + chr(13);
t := t + ´<body>´ + chr(13);
t := t + texto;
t := t + ´</body>´ + chr(13);
t := t + ´</html>´ + chr(13);
end;
exports
teste index 1;
begin
end.
Dudu
Curtidas 0