Multiple-instances are two or more programs which share the same code and run at the same time
Questions tagged [multiple-instances]
1018 questions
3
votes
2 answers
Can I run multiple private docker registry behind load balancer?
I was wondering if it's possible to run multiple docker registry hosts under an ELB or (any load balancer for that matter). I am planning to run the private docker registry inside a docker container. Has anyone tried that? Any ideas for how to have…

alexfvolk
- 1,810
- 4
- 20
- 40
3
votes
0 answers
Using db4o with multiple application instances under medium trust
I recently stumbled over the object database engine db4o which I think looks really interesting. I would like to use it in an ASP.NET MVC application that will be deployed to a shared hosting environment under medium trust. Because of the trust…

Anders Fjeldstad
- 10,724
- 2
- 33
- 50
3
votes
2 answers
WPF + Communicate between multiple application instances
I need to grab information between two instances of my WPF app (the contents of a public collection, to be precise). Any help?

Matt H.
- 10,438
- 9
- 45
- 62
3
votes
1 answer
Multiple instances of MediaCodec used as video encoder in Android
Is it possible to use two Android MediaCodec instances as video encoder to encode two videos simultaneously?
I know that MediaCodec itself can have multiple instances, for video/audio encoding/decoding. But is there any restriction on…

Mark
- 305
- 5
- 17
3
votes
5 answers
Is there a way to tell .NET where to look for the user settings file?
Basically multiple instances of our application will be launched but they need to have separate user settings. We currently have use "user settings" for that, and it works fine for a single instance (per windows user) but we would like to be able…

Davy8
- 30,868
- 25
- 115
- 173
3
votes
0 answers
Is it possible to force a Wix Bootstrapper/MSI to display the Install Screen even if it is already installed?
I have a Wix Bootstrapper which is used to install various MSIs, one of which may need to be installed with multiple instances on the same machine. I currently am telling it which MSIs to install via command line parameters. When I try and install…

dingdangdowney
- 501
- 1
- 8
- 22
3
votes
0 answers
python faulthandler, logging to text file and multi-instance
I'm developing a PyQt applications so there's a good possibility segfaults could happen.
I want to use the faulthandler module to catch these. Now instead of writing to stderr I want to do the following:
Make faulthandler write into a file with a…

The Compiler
- 11,126
- 4
- 40
- 54
3
votes
0 answers
How to open multiple windows/session in iOS app?
I am working on an app which is a Server based App, User establish a connection/session with Server and do what he wants. (For Example Lets say this is SessionScreen:- one Session is - http://postimg.org/image/xog0l04wl/)
Now App requires one more…

Developer
- 161
- 1
- 9
3
votes
3 answers
Multiple instances of a class
I have a class called Points and I need to create 100 points.
I need to do something like:
class Point(object)
...
for i in range(1,100):
pi = Point()
the points should be named p1, p2, ... p100
The lines above do not work, obviously.
The…

zplot
- 31
- 1
3
votes
4 answers
Get number of instances of custom class
I have created a custom class in xcode: PaperPack and defined 2 instant variables: title and author-
Then I alloc 2 instances of the class as below:
PaperPack *pack1 = [[PaperPack alloc] init];
pack1.title = @"Title 1";
pack1.author =…

fahrulazmi
- 734
- 9
- 12
3
votes
2 answers
How to close specific JFrame based on events on JPanel without exiting application?
How do I exit a particular frame based on a simulation on a JPanel within that particular frame without exiting entire application?
In my main class I have a Frame() method
public void FightFrame(String offensemsg){
JFrame frame = new…

user2556304
- 159
- 2
- 15
3
votes
2 answers
vb.net - How do I selectively communicate with two instances of a program?
I'm new to VB, and so forgive me if this is a simple question.
I will be running multiple time consuming (single thread) processes in a program (that allows automation thru COM). And so to save some time, I want to open two or more instances of this…

Esteban
- 179
- 8
3
votes
2 answers
JQuery get values for all inputs in a div
I have many of these multiple choice selections in a control panel, and I wish to get the data entered into the text fields using JQuery. Preferably the format would be Question, AnswerOpt1, AnswerOpt2.... I have tried the code supplied below, and…

Blease
- 1,380
- 4
- 38
- 64
3
votes
2 answers
Respond to multiple KeyDown events
I'm making a simple WinForm car race game. I've got two objects - cars, and they move on the form when key is pressed (Form1KeyDown_Event).
The only thing is, that when one player press a key, the other player cannot press his key (nothing…

Joudicek Jouda
- 792
- 2
- 13
- 30
3
votes
1 answer
Working with multiple panels in one frame
I have a problem where i want a program to switch between multiple panels in a same frame. The problems I am encountering are that i can't set the layout when the panels switch and after the switch content is lowering pixel by pixel. Here is my…

user2319690
- 31
- 1
- 1
- 3