Ver Mensaje Individual
  #1  
Antiguo 14-08-2006
Avatar de johurgi
johurgi johurgi is offline
Miembro
 
Registrado: jul 2006
Posts: 95
Reputación: 18
johurgi Va por buen camino
Cargar Imagen

Buenas a tod@s!!!!!

Hola necesito cargar un TImage al inicializar el formulario principal de mi programa. Pero este no me lo carga a pesar de que le indico donde esta la imagen.

Gracias de antemano
Código:
procedure TImagenesFicha.FormShow(Sender: TObject);
begin
if FileExists(path+nomFoto) then
begin
 image1.Picture.LoadFromFile(path+nomFoto);
 image1.show;
end;
end;
Responder Con Cita