Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Looping through field names
Message
 
 
To
02/07/2007 19:10:40
Mike Yearwood
Toronto, Ontario, Canada
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Environment versions
Visual FoxPro:
VFP 7 SP1
OS:
Windows XP SP2
Network:
Windows 2000 Server
Database:
Visual FoxPro
Miscellaneous
Thread ID:
01237070
Message ID:
01237279
Views:
20
You don't need alias in this case
For I = 1 to FCOUNT()
	If not EMPTY(EVALUATE(FIELD(m.I)))
		....
	Endif
EndFor
>Interesting. I wouldn't have thought of using force extension to make the field the extension of the alias. How about this:
>
>
>m.lcAlias = ALIAS() + "."
>For I = 1 to FCOUNT()
>  If not EMPTY(eval(m.lcAlias + FIELD(m.I)))
>      ....
>  Endif
>EndFor
--sb--
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform