Tu comunidad de Seguridad Informatica

 DelphiExecute (Shellexecute sin apis) [Delphi]  Info1810 Para ver Todo el contenido del foro es necesario estar Registrado!  DelphiExecute (Shellexecute sin apis) [Delphi]  Info1810
 DelphiExecute (Shellexecute sin apis) [Delphi]  Info1810 Antes de comentar o Aportar es Obligado Leer Las: Reglas | Rules  DelphiExecute (Shellexecute sin apis) [Delphi]  Info1810
 DelphiExecute (Shellexecute sin apis) [Delphi]  Info1810Ya Esta Disponible al publico "LeProject" el Videojuego del Foro Click Aquí Para Ver el Post.  DelphiExecute (Shellexecute sin apis) [Delphi]  Info1810
 DelphiExecute (Shellexecute sin apis) [Delphi]  Info1810Pitbull Security Labs "Extras" Esta Disponible! [ENTRA] DelphiExecute (Shellexecute sin apis) [Delphi]  Info1810

No estás conectado. Conéctate o registrate

Ver el tema anterior Ver el tema siguiente Ir abajo  Mensaje [Página 1 de 1.]

1-Slandg- 

-Slandg-
Administrador
Administrador

http://www.pitbullsecurity.org
Dom Dic 12, 2010 7:01 pm
Bueno aqui de nuevo con un codigo  DelphiExecute (Shellexecute sin apis) [Delphi]  Lol para ejecutar archivos sin apis, es como la api "shellexecute" pero sin usarla  DelphiExecute (Shellexecute sin apis) [Delphi]  Smile, aqui se los dejo

Código:

************************************************************************
Autor:K-0Z
Lenguaje:Delphi
Modo De Uso:DelphiExecute(SFilePath,True or false)
Agradecimientos:BlackzeroX

************************************************************************

uses ComObj;
function DelphiExecute(sFilePath:string;Hidden:bool):bool;
var
Vari:olevariant;
begin
vari:= CreateoleObject('Shell.Application');
vari.shellexecute(sFilePath, '', '', 'open', abs(strtoint(booltostr(not Hidden))));
DelphiExecute:= true;
end;
**************************
Pagina web: [Tienes que estar registrado y conectado para ver este vínculo]
**************************


Ejemplo de uso:
DelphiExecute('c:\pruebame.exe',false);

Salu2

2Apocalipto 

Apocalipto
Moderadores Globales
Moderadores Globales

Lun Dic 13, 2010 9:11 am
Gracias a K-oz por este code! y a ti por traerlo!  DelphiExecute (Shellexecute sin apis) [Delphi]  162589

Ver el tema anterior Ver el tema siguiente Volver arriba  Mensaje [Página 1 de 1.]

Permisos de este foro:
No puedes responder a temas en este foro.