switch to previous instance
Posted
#1
(In Topic #846)
Trainee
when starting the app I would like to switch to a previous instance, if existing.
Is there in Gambas something like VB's PrevInstance?
Thanks
Posted
Regular

Europaeus sum !
<COLOR color="#FF8000">Amare memorentes atque deflentes ad mortem silenter labimur.</COLOR>
<COLOR color="#FF8000">Amare memorentes atque deflentes ad mortem silenter labimur.</COLOR>
Posted
Trainee
I think I can get process-IDs of all "instances" of my app with sth. like
Code
Shell "pgrep -f \"" & Application.Path &/ Application.Args[0] & "\"" To res
Is there a way to activate another "instance" by its process-ID? Is it handled by the XServer?
Posted
Guru

Is there in Gambas something like VB's PrevInstance?
I don't think there is, but you can see what windows are open with the following code: -
Posted
Guru

when app is run it creates a DBus interface and sets the DBus.Unique property.
if app is run again it cannot create the DBus interface so it knows to send the args/command to the first instance via DBus message and exit.
Any number of commands can be added to the DBus interface, like an Activate() method if you just want to activate first instance. (check out DBusComm.class and SingleInstance.class to see how i added the ArgAdded() command)
You can test the app by running it, then running it again while it's loaded with arguments.
any supplied arguments will be sent to the first instance.
All the best
1 guest and 0 members have just viewed this.


