Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
EVALUATE() function
Message
General information
Forum:
Visual Basic
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00388367
Message ID:
00388439
Views:
11
Ben,

You'll need the MS Script control on a form to evaulate non-compiled code. VB compiles many things to native code for speed (by default).
(Hey, no arguments, it does.) VFP has the advantage of interpreting every line and run time, so macro subst. isn't a big deal to VFP.
Add the MS script control to a form and the code below can be used:

With ScriptControl1
.Language = "VBScript"
MsgBox "2+3 = " & .Eval("2+3")
End With

HTH,
Ed

>Does anyone know of a function in VB that acts like the EVALUATE function in VFP? I posted list a while back and lost the answer.
>
>For those not familiar with the function it would do the following:
>
>------------------
>dim myInt as Integer
>
>myInt = EVALUATE("3 + 4")
>
>'myInt would then contain 7 as an integer.
>----------------------
>
>
>Thanks in Advance!
>Ben
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform