Hi Team,
I am using ReflectionDT 16.0 and using below .NET code to interact with .rdx files. It's working if we trigger the EXE but its throwing the below error if the same code base is installed as "Windows service".
Could you please help me on this. This is a show stopper for us.
log.Info("CreateApplication");
terminal = (IIbmTerminal) app1.CreateControl("C:\\\\User\\\\Test1.rd5x");
log.Info("CreateControl");
IFrame frame = (IFrame)app1.GetObject("Frame");
log.Info("GetObject");
frame.CreateView(terminal);
log.Info("CreateView");
IView views = frame.SelectedView;
IIbmTerminal ibm = (IIbmTerminal)views.Control;
screen = ibm.Screen;
“Showing a modal dialog box or form when the application is not running in UserInteractive mode is not a valid operation. Specify the ServiceNotification or DefaultDesktopOnly style to display a notification from a service application.”
#Reflection
#Reflection16.0