Delphi - Se puede saber cuando un soft esta hecho en Delphi

 
Vista:

Se puede saber cuando un soft esta hecho en Delphi

Publicado por el novato (22 intervenciones) el 12/01/2006 18:58:40
Hola amigos quisiera saber si esposible, que alguien sepa si un software esta hechon en Delphi, claro entregando solamente el *.exe. ES posible saber es??

saludos a todos ......
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder

RE:Se puede saber cuando un soft esta hecho en Del

Publicado por BigLuis (713 intervenciones) el 12/01/2006 21:57:23
Prueba esta funcion escrita por JMR(Jose MARIA rODRIGUEZ, GRAN CONOCEDOR DE DELPHI EN PROFUNDIDAD)

function IsDelphiModule(const cModuleName: String): Boolean;
var
hModule: THandle;
begin
Result := False;
// hModule := LoadLibrary(PChar(cModuleName));
hModule := LoadLibraryEx(PChar(cModuleName), 0, LOAD_LIBRARY_AS_DATAFILE);
if hModule <> 0 then
EnumResourceTypes(hModule, @EnumTypes, LongInt(@Result))
//else
// RaiseLastWin32Error;
end (*IsDelphiModule*);
//*****************************************************************

Suerte
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar

RE:Se puede saber cuando un soft esta hecho en Del

Publicado por Delfino (1216 intervenciones) el 13/01/2006 07:46:36
O bien descarga del BDN una ap llamada IsDelphi, por cierto los grids, bitbuttons, handcursor de Delphi son inconfundibles..
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar