[futurebasic] Re: [FB^3] FBPICTFIELD FBPICTFIELDCLOSE

Message: < previous - next > : Reply : Subscribe : Cleanse
Home   : October 1999 : Group Archive : Group : All Groups

From: BMichael@...
Date: Tue, 5 Oct 1999 23:19:25 EDT
First off, folks, PLEASE change the subject line when responding to a 
digest!!! (Or to someone else, who didn't when responding to a digest.)

This was "Re:  [FB] Re: futurebasic Digest 5 Oct 1999 05:46:04 -0000 
Issue 1008"

>>After fixing a few hundred errors on a project this is the message I get.
>>
>>Error: '_FBPICTFIELD' Unresolved...
>>
>>Error: '_FBPICTFIELDCLOSE' Unresolved...

These are FB^3 internal function labels. For example, "PICTURE FIELD 
CLOSE" causes the "_FBPICTFIELDCLOSE" code to execute. This routine was 
accidentally left out of the Release 0 headers (it'll be in the next one) 
so the code is "unresolved", meaning it doesn't exist. (Thus you can't 
find it. Neither can the compiler.)

You don't get to "jump" to the line with the error, because the error is 
in the "behind the scenes" stuff. For now, change PICTURE FIELD CLOSE to 
EDIT FIELD CLOSE (does same thing).

I'm not sure what _FBPICTFIELD is, or should be, but obviously it's the 
same type problem.

Bill