Re: [lazarus] Perplexing TBitmap behavior.

2006-12-08 Thread Mattias Gaertner
On Fri, 08 Dec 2006 08:25:11 +0200 Dave Coventry <[EMAIL PROTECTED]> wrote: > Hi Tom, > > Yes! That was it! > > I've done a lot of head scratching trying to figure out what was > going on. :-? In such cases: Just move the mouse over TBitmap and wait for the hint, or do a find declaration. Matt

Re: [lazarus] Perplexing TBitmap behavior.

2006-12-07 Thread Dave Coventry
Hi Tom, Yes! That was it! I've done a lot of head scratching trying to figure out what was going on. :-? Thank you. Tom Gregorovic wrote: Dave Coventry napsal(a): Hi, I have code as follows: // snip === procedure TForm1.FormShow(Sender: TObject); var

Re: [lazarus] Perplexing TBitmap behavior.

2006-12-07 Thread Tom Gregorovic
Dave Coventry napsal(a): Hi, I have code as follows: // snip === procedure TForm1.FormShow(Sender: TObject); var BufferMap: TBitmap; begin BufferMap:=TBitMap.Create; end; // snip === This should work (indeed it works in

[lazarus] Perplexing TBitmap behavior.

2006-12-07 Thread Dave Coventry
Hi, I have code as follows: // snip === procedure TForm1.FormShow(Sender: TObject); var BufferMap: TBitmap; begin BufferMap:=TBitMap.Create; end; // snip === This should work (indeed it works in another project). However