Ver Mensaje Individual
  #8  
Antiguo 28-07-2005
opardor opardor is offline
Miembro
 
Registrado: jul 2005
Posts: 16
Reputación: 0
opardor Va por buen camino
Lightbulb

En lugar de usar el TImage te recomiendo uses TBitmap y luego se lo asignes al imgEnviar..

Código:
procedure TExplorer.Timer1Timer(Sender: TObject);
var
  DeskTop : TBitmap ;
begin
  DeskTop := TBitmap.Create ;
  try
	with DeskTop do begin
	  Handle := GetWindowDC (GetDesktopWindow) ;
	  Width :=  GetDeviceCaps( handle, HORZRES );
	  Height := GetDeviceCaps( handle, VERTRES );
	  BitBlt(Canvas.Handle,0,0,Width, Height,handle,0,0,SRCCOPY);
	  imgEnviar.Picture.Bitmap := Desktop;
   end;
 finally
   DeskTop.Free;
 end
end;
Espero te sirva!!
Responder Con Cita