Can any one please tell me,
How can i Evaluate an object at runtime in VB like JScript
with EVAL().
I using the following code:
thumb.Save("C:\abc.gif", ImageFormat.Png)
I want it: to be like
thumb.Save("C:\abc.gif", Eval("ImageFormat." &
varExtension)
Other wise i am using Select Case for every type of File
Extension.
TIA
NMS