Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Handling Tables
Message
 
 
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Title:
Miscellaneous
Thread ID:
00868831
Message ID:
00869902
Views:
16
>>* Direct conversation to Name expresion wouldn't work
>>m.var1 = mytable.(FieldName)
>>* But this will
>>m.var1 = ("mytable." + m.FieldName)
>
>Sergey, this gives you only the table and fieldname, not the *contents* of the field. I don't think that's what you're looking for there, is it?

Fred,

You're correct. It should be
m.var1 = mytable.&FieldName
* Direct conversation to Name expresion wouldn't work 
m.var1 = mytable.(FieldName)
* But this will
m.var1 = EVAL("mytable." + m.FieldName)
--sb--
Previous
Reply
Map
View

Click here to load this message in the networking platform