"close" command in pyeviews
Posted: Tue Aug 27, 2019 9:51 am
I am unable to pass the "close" command from pyeviews to Eviews. Bunch of other commands work smoothly.
import pyeviews as evp
eviewsapp = evp.GetEViewsApp(version='EViews.Manager.11', instance='new',showwindow=True)
evp.PutPythonAsWF(varlist, app=eviewsapp) #this works
evp.Run('run program.prg', app=eviewsapp) #this works
evp.Run('close program.prg', app=eviewsapp) #this does not work
evp.Run('close @prg', app=eviewsapp) #this does not work
evp.Run('wfsave(2) Model', app=eviewsapp) #this works
import pyeviews as evp
eviewsapp = evp.GetEViewsApp(version='EViews.Manager.11', instance='new',showwindow=True)
evp.PutPythonAsWF(varlist, app=eviewsapp) #this works
evp.Run('run program.prg', app=eviewsapp) #this works
evp.Run('close program.prg', app=eviewsapp) #this does not work
evp.Run('close @prg', app=eviewsapp) #this does not work
evp.Run('wfsave(2) Model', app=eviewsapp) #this works