Ver Mensaje Individual
  #2  
Antiguo 03-05-2006
Northern Northern is offline
Miembro
 
Registrado: ene 2006
Posts: 238
Reputación: 21
Northern Va por buen camino
Este código lo saqué de algún sitio pero ahora no me acuerdo

Código Delphi [-]
procedure TFormSplash.FormActivate(Sender: TObject);
var
  HRGN: LongWord;
begin
  Label1.Caption := Chr(169)+' Tus Credenciales u otro texto ';
  HRGN := CreateEllipticRgn(0, 0, FormSplash.Width-4, FormSplash.Height-6);
  //HRGN := CreateEllipticRgn(32, 0, FormSplash.Width-26, FormSplash.Height);
  SetWindowRgn(FormSplash.Handle, HRGN, True);
end;

espero que te sirva

Última edición por dec fecha: 03-05-2006 a las 00:17:10.
Responder Con Cita