[futurebasic] Re: [FB] Edit Field filter function with appearance button

Message: < previous - next > : Reply : Subscribe : Cleanse
Home   : December 2003 : Group Archive : Group : All Groups

From: Robert Covington <artlythere@...>
Date: Wed, 3 Dec 2003 02:45:22 -0500
On Wednesday, December 3, 2003, at 01:23  AM, Bernie Wylde wrote:

> Robert C wrote:
>
>> You can add a filter Function (key entry filter) to an edit field 
>> easily enough, by tacking it onto the end (Appearance runtime)
>>  DIM @nFn as long
>> nFN = @FN WhateverYouwant
>> Edit Field _FixerField , tol$ ,(140,25)-(180,40) , 
>> _framedNoCR_NodrawFocus , _centerjust , nFn
>> ....but I was wondering if it was possible to add the same to an 
>> Appearance Button unicodeTextProc type of control...?
>> Anybody know if this is possible? That way you get the nicer 
>> appearance of the text, and more, plus the filter fn.
>
> '~'A
> '                       Runtime : Rntm Appearance.Incl
> '~'B
> /*
> A key filter proc applied to an EditText control.
> The same technique works for an EditUnicodeText control.
> Robert P.  11 June 2003
> */
>

Thanks, B.

rc