Qt embedded && vnc question
-
wrote on 30 Aug 2010, 16:57 last edited by
Hi all,
I'm developing an embedded application for the BeagleBoard. I need to have a remote vnc access to the application so I start it with:
@
./app -qws -display VNC:0
@but this disable the local application's display (I can't see the app on the monitor attached to the beagleboard).
Is there a way to have both output (local and remote) ?
Thanks
-
wrote on 1 Sept 2010, 06:59 last edited by
It should be useful for me to know if it's normal to have not both display output... or if it a problem of my qt installation.
-
wrote on 17 Feb 2011, 14:47 last edited by
Try setting the environmet Var to
@export QWS_DISPLAY="VNC:LinuxFb"@
or start yout app
@./app -qws -display VNC:LinuxFb@ -
wrote on 17 Feb 2011, 20:04 last edited by
[quote author="baerbel" date="1297954044"]Try setting the environmet Var to
@export QWS_DISPLAY="VNC:LinuxFb"@
or start yout app
@./app -qws -display VNC:LinuxFb@[/quote]
Thanks, tomorrow I'll try.
-
wrote on 18 Feb 2011, 15:29 last edited by
YES!
Thanks, it works!