Saiyine
Punto Com

Como crear un bitmap en tiempo de ejecucion y como dibujar puntos mas rapidamente que con pixel[]

2001-01-01 00:00:00

procedure EscribePixel(x,y : integer; r,g,b : byte; var b : TBitmap);
var
  Pix : PByteArray;
begin
  Pix := b.ScanLine[y];
  Pix[x*3]:=b;
  Pix[x*3+1]:=g;
  Pix[x*3+2]:=r;
end;

function CrearBitmap(tamx,tamy : integer) : TBitmap;
begin
  result:=TBitmap.Create;
  result.Height:=tamy;
  result.Width:=tamx;
  result.PixelFormat := pf24Bit;
end;

Rollos antiguos

2001-01-01 00:00:00 - Como averiguar el codigo ascii de una tecla pulsada en el form y como simular la pulsacion de otra.

2001-01-01 00:00:00 - Borrar un elemento de un listbox/combobox sabiendo el texto, usar indexof.

2001-01-01 00:00:00 - Asociar una extension a un programa.

2001-01-01 00:00:00 - Apagar el monitor durante varios segundos.

2005-07-01 00:21:00 - Extrayendo correos de un fichero de texto.

Saiyine

Selfie of meHi! Welcome to Saiyine Punto Com where I talk about anything that goes through my mind!

Puedo prometer y prometo que a la mayor brevedad aquí irá un menú o algo asín.