Bueno ahora mas sobre imagenes, ocurre que tengo mi form transparente, gracias a esta funcion o utilidad que me sirve de maravillas.
procedure TForm2.MakeTransparent; var AControl: TControl; A, Margin, X, Y, CtlX, CtlY: Integer; begin Margin := (Width - ClientWidth) div 2; FullRgn := CreateRectRgn(0, 0, Width, Height); X := Margin; Y := Height - ClientHeight - Margin; ClientRgn := CreateRectRgn(X, Y, X + ClientWidth, Y + ClientHeight); CombineRgn(FullRgn, FullRgn, ClientRgn, RGN_DIFF); for A := 0 to ControlCount - 1 do begin AControl := Controls[A]; if (AControl is TWinControl) or (AControl is TGraphicControl) then with AControl do begin if Visible then begin CtlX := X + Left; CtlY := Y + Top; CtlRgn := CreateRectRgn(CtlX, CtlY, CtlX + Width, CtlY + Height); CombineRgn(FullRgn, FullRgn, CtlRgn, RGN_OR); end; end; end; SetWindowRgn(Handle, FullRgn, True); end;
Esta función que todo mi form sea transparente excepto los controles, ahora lo que quiero es poner un label sobre este form y que el label tenga un form transparente. ya que cuando introduzco el label me sale algo así

Como puedo hacer q mi componente sea transparente al igual q mi form.