[futurebasic] Re: [FB] CrosswordHinter

Message: < previous - next > : Reply : Subscribe : Cleanse
Home   : January 2004 : Group Archive : Group : All Groups

From: Alain Pastor <apastor@...>
Date: Sun, 11 Jan 2004 15:38:50 +0100

Bernie Wylde wrote:

> On 11 Jan 2004, at 12:47, Al-truist-ain Pastor wrote:
> 

> 
> I've just found that if you want to use the 
> _kControlFontSmallSystemFont, the lines are, for me (like me), too 
> spaced out but, with this font, reducing the cell text size does not 
> affect the line spacing. However, you can get round this problem by 
> setting the row height (after the browser has been created) with: fn 
> DBFDSetRowWidthHeight(gBrowser, 1, 14, _height).

Bernie,
All the functions starting with DBFD are considered as private to the 
library, I think the public function should be:
BrowserSetItemRowHeight( browser, itemID, height ).
Calling the DBFD prefixed functions would optimize a bit your code, but 
if you go that way, it is better to learn the Toolbox functions and use 
them. The Toolbox function in that case is:
Fn SetDataBrowserTableViewRowHeight( browser, height)
because the DataBrowser is not set by default to have variable height 
rows, with variable height you must use
Fn SetDataBrowserTableViewItemRowHeight( browser, itemID, height), if 
I'm correct.
> 
> I've got just the place for one of these beauties   :-)
> 
> Thanks some more, Alain

You're welcome.

Alain