Board index » delphi » Scrollbox background image
Paul van Andel
![]() Delphi Developer |
Mon, 20 Oct 2003 04:58:50 GMT
|
Paul van Andel
![]() Delphi Developer |
Mon, 20 Oct 2003 04:58:50 GMT
Scrollbox background image
Does anyone know how to create a tiled background on a scrollbox canvas,
exactely like the tiled background used on html pages. The problem should be solved if a scrollbox background cold be transparent, then I could place the image on the form canvas. Thanks in advance |
Smol
![]() Delphi Developer |
Mon, 20 Oct 2003 17:53:06 GMT
Re:Scrollbox background image"Paul van Andel" <p.van.andelNOS...@hccnet.nl> wrote in message Quote> Does anyone know how to create a tiled background on a scrollbox canvas, I couldn't get it to work properly. Finally, I wrote my own control which is not quite finished right now. OT: Thanks, |
Ilkka Lahdenpohj
![]() Delphi Developer |
Thu, 23 Oct 2003 18:10:34 GMT
Re:Scrollbox background imageMake another component: unit TileScrollBox; interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, type TTileScrollBox = class(TScrollBox) procedure Register; implementation procedure Register; constructor TTileScrollBox.Create(AOwner: TComponent); destructor TTileScrollBox.Destroy; procedure TTileScrollBox.OnBitmapChange(Sender: TObject); procedure TTileScrollBox.SetBitmap(const Value: TBitmap); procedure TTileScrollBox.Paint; if (H > 0) and (W > 0) then procedure TTileScrollBox.WMPaint(var message: TWMPaint); end. "Paul van Andel" <p.van.andelNOS...@hccnet.nl> wrote in message Quote> Does anyone know how to create a tiled background on a scrollbox canvas, |
Paul van Ande
![]() Delphi Developer |
Mon, 27 Oct 2003 07:22:34 GMT
Re:Scrollbox background imageQuote> Make another component: for a TImage, this will not show at all. I already have something working, but I'm curious why a TImage is not visible when I use this TileScrollBox component. Paul. Quote> unit TileScrollBox; |
1. Background bitmap in ScrollBox
2. Making ScrollBox and DBgrid background transparent?
3. Aligning thumbnail images in a Scrollbox
4. Image distorts in tracking scrollbox
5. Newbie:Print contents of ScrollBox(image&buttons)
6. HELP:Print contents of ScrollBox(image&buttons)
7. How to put an image in a ScrollBox ?
8. large images and scrollboxes