Re: Simple or hard solution

2011-09-29 Thread noonie
Greetings, Google seems to think not :-( There are suggested work-arounds depending on what 'x' actually is. Use COM to instantiate a script library or misuse a data table or even write your own. http://www.velocityreviews.com/forums/t94154-eval-function-in-vb-net.html

Re: Simple or hard solution

2011-09-29 Thread Anthony Mayan
thanks noonie interesting..such a simple request..appears like a lot work for a solution..but i must persevere! On 9/29/11, noonie neale.n...@gmail.com wrote: Greetings, Google seems to think not :-( There are suggested work-arounds depending on what 'x' actually is. Use COM to

Re: Simple or hard solution

2011-09-29 Thread Greg Harris
We are using NCalc I dont know much details on it http://ncalc.codeplex.com/ On Thu, Sep 29, 2011 at 4:45 PM, Anthony Mayan ifum...@gmail.com wrote: thanks noonie interesting..such a simple request..appears like a lot work for a solution..but i must persevere! On 9/29/11, noonie

Re: Simple or hard solution

2011-09-29 Thread Mark Hurd
€ Davy --Original Message-- From: Anthony Mayan Sender: ozdotnet-boun...@ozdotnet.com To: ozDotNet ReplyTo: ozDotNet Subject: Simple or hard solution Sent: 29 Sep 2011 07:42 I have a function sub SayHello(word as string)    Dim x as string=word    trace.write(word) ''works fine

Simple or hard solution

2011-09-28 Thread Anthony Mayan
I have a function sub SayHello(word as string) Dim x as string=word trace.write(word) ''works fine of course trace.write(eval(x)) 'is this possible?? or how can i make this possible end sub