Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Code variable
Message
From
17/03/2005 09:58:40
 
 
To
17/03/2005 09:53:14
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Title:
Environment versions
Visual FoxPro:
VFP 8 SP1
OS:
Windows XP SP2
Network:
Windows 2000 Server
Database:
Visual FoxPro
Miscellaneous
Thread ID:
00996762
Message ID:
00996769
Views:
13
This message has been marked as the solution to the initial question of the thread.
>I am tinkering with a wizard idea. I have not been able to get this to work.
>
>-------------------
>CodeLine = ""
>NodeCount = 30
>
>CodeLine = "Dimension Results("&NodeCount"+,2)"
>-------------------
>
>The resulting CodeLine variable contents should be:
>
>Dimension Results(30,2)
>
>However, I have not been able to get this to happen. Do you have an answer?

Why not just turn Nodecount to a string?
CodeLine= ""
NodeCount = 30
CodeLine = "Dimension Results(" + TRANSFORM(NodeCount) + ",2)"
Charles

"The code knows no master." - Chuck Mautz
"Everybody is ignorant, only on different subjects." - Will Rogers
Previous
Reply
Map
View

Click here to load this message in the networking platform