Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Referencing fields as strings
Message
From
06/11/1997 19:04:55
 
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00058525
Message ID:
00058760
Views:
40
>>I am setting up a table where one of the fields in the table actually desribes the name of the field that I must use in a seperate table. The problem is that VFP will not allow me to do with because it thinks that I am referencing a string rather than a field name. Is there a way around this.
>>
>>thanking you in advance
>Matthew,
>
>Macro expansion, if that is what you are using, only works for character memory variables. It does not work on fields. Therefor you need to;
>
> lcMyFieldName = TableAlias.FieldName
> REPLACE &lcMyFieldName WITH "Whatever"

Faster:

REPLACE (TableAlias.FieldName) with "Whatever"

Vlad
Previous
Reply
Map
View

Click here to load this message in the networking platform