Remote Access Viewer proble

Discussion of application development using iX Developer, including but not limited to getting started, using the functions tab, properties, objects and installation.
Post Reply
philip.joebstl
Posts: 26
Joined: Tue Oct 09, 2012 12:56 am

Remote Access Viewer proble

Post by philip.joebstl »

Hi there,

i wanted to start the "RemoteAccessViewer" directly from the iX Application (PC target), and automatically connect to a T7A panel. I start the app via the command line typing:

C:\...\vncviewer.exe 192.168.1.1

The password input window is coming up, and it succesfully connects to the client. But when I close the vnc, it comes again with the password window, like a perpetum mobile - it is not possible to close the vncviewer any more.

Is there any help about this?
Thanks a lot!
Best regards,
Philip Joebstl

stuartm
Posts: 61
Joined: Thu Jun 06, 2013 9:21 am

Re: Remote Access Viewer proble

Post by stuartm »

using System.Diagnostics;

...

void Button1_Click(System.Object sender, System.EventArgs e)
{
Process.Start("Explorer.exe", ""); // Or your application
//Application.Exit();
}

Post Reply