Ver Mensaje Individual
  #2  
Antiguo 23-06-2013
Avatar de dec
dec dec is offline
Moderador
 
Registrado: dic 2004
Ubicación: Alcobendas, Madrid, España
Posts: 13.108
Reputación: 34
dec Tiene un aura espectaculardec Tiene un aura espectacular
Hola,

Código Delphi [-]
unit Global;

interface

function SayHello() : boolean;
 
Var
  Vusuario : string;
  vCia     : string;
  MonedaBase : String;
  Detener   : boolean;

implementation

uses
  Dialogs;

function SayHello() : boolean;
begin
  Dialogs.ShowMessage( 'Hello!' );
  result := true;
end;

end.
__________________
David Esperalta
www.decsoftutils.com
Responder Con Cita