[futurebasic] Static edit field problems

Message: < previous - next > : Reply : Subscribe : Cleanse
Home   : May 2002 : Group Archive : Group : All Groups

From: Douglas Stemen <dstemen@...>
Date: Wed, 22 May 2002 08:22:17 -0400
With FB^3 r6 when compiling with appearance windows (both carbon and cpuPPC)
I can no longer change edit fields from static to non-static and vice versa.

The follow code to change edit fields currently works and has always worked
in non-appearance windows to change edit fields that were originally created
as static or non-static (of course _useplainframe and _nodrawfocus are not
used in non appearance applications).

Am I doing something wrong or is this a bug?


EDIT FIELD 0
FOR t=21 TO 69 STEP 8
EDIT FIELD t%,,,_framedNoCR_usePlainFrame_noDrawFocus,_rightJust
EDIT FIELD (t%+1),,,_statFramed,_rightJust
NEXT t%

These edit fields were originally created with the following code.

EDIT FIELD (x+6)," ",(499,y)-(572,z),_statFramed,_rightJust
EDIT FIELD (x+7),"",(575,y)-(640,z),
_framedNoCR_usePlainFrame_noDrawFocus,_rightJust


Thanks,


Doug Stemen