Multiple-instances are two or more programs which share the same code and run at the same time
Questions tagged [multiple-instances]
1018 questions
-2
votes
1 answer
Eclipse Java multiple-instance conflicts?
I am running multiple instances of my own chess algorithm in Eclipse, having them play games against themselves. Each instance of the main class plays games against itself, so if I start two instances of the main class, two chess games will be…

Daniel Williams
- 635
- 7
- 14
-2
votes
1 answer
Symfony2 Routing for multiple clients
I'm very new to symfony, but I'm sure it will help me to develop faster.
So here are my basic problem. I want to develop a application, that can be used by multiple clients. They will all have its own url. Something like…

ich
- 1
- 1
-2
votes
1 answer
How to create multiple web application (different website) with 1 laravel installation
Requirement - I need to create 5 web applications for 5 different websites.
Current Status - I have created 1 web application in laravel.
Query - How to use this laravel instance to code for other 4 web applications.
I am sorry if the question is…

Al D
- 3
- 2
-2
votes
3 answers
TypeError: unsupported operand type(s) for +: 'int' and 'str' for python
class Time:
"""The time class defines the time with the following attributes:
hour ,minutes , second
"""
def __init__(self,hour=12,minutes=0,seconds=0):
self.hour = hour
self.minutes = minutes
self.seconds =…

Chirag
- 1
- 2
-2
votes
1 answer
Excel formula to search a column for specific number, and copy cell next to it, with multiple instances
Specifically I am trying to build a room roster for a conference from the registration data.
I need to search a column of room numbers (Registration!K:K), and when that exact room number shows up (i.e. 111), I need to have the persons name listed…

Tyler
- 1
-2
votes
2 answers
How display a JFrame from another JFrame method?
I'm new to Java GUI. I'm not good to thread programming. I just wondering if there is any easy way to create and display a JFrame from another JFrame method. I give you my code. The SettingsForm calls the Test which is a JFrame via the close()…

xarlap
- 157
- 1
- 2
- 14
-2
votes
1 answer
Send a string from jframe2 to jframe1
I have a jFrame1, two JTextField. One of the text fields should load the data from my jFrame2. In my jFrame1 I have a button that opens the jFrame2. When you press the button opens jFrame2, you can see 4 buttons, and when you press one of the…

Despotars
- 541
- 1
- 8
- 23
-2
votes
1 answer
Is there any way to know whether class has been inherited in C++
In C++, Is there any way/ procedure to know whether particular class has been inherited by other class?
Is it possible in C++

hims
- 325
- 3
- 10
-2
votes
1 answer
Multiple JS Show/Hide
I have a show/hide functionality for the Video and FAQ section on the following test page: [code]http://63.246.25.145/surety-bonds/contract-bonds/performance_bond.htm[/code]
I believe my code should show 5 FAQs and 3 videos, but it is displaying 3…

MichaelW
- 41
- 1
- 1
- 4
-2
votes
2 answers
the "mother frame" disapear after showing the next frame
I am actually working on a java project which shows many frames, and when we click on a button then we go to the appropriate frame ... the problem is that the first frame always stays visible.
I have tried f1.setVisible(false); in the action…

john carter
- 53
- 1
- 1
- 5
-2
votes
2 answers
Multithreading in a windows form with Multple instances of the form running in parallel
I have this project in which i am calling a web service, receiving rates from the web service, processing it and displaying it in appropriate text boxes,
As you can guess the waiting for response from web service, and processing is too much work on…

Samy S.Rathore
- 1,825
- 3
- 26
- 43
-3
votes
1 answer
Creating multiple instances of a constructor with different values
I have a class with a constructor
public class Test {
private static String name;
public Test(String name) {
this.name = name;
}
public static String getName() {
return this.name;
}
}
Here I've created 2 instances of the…

PeytonPlayz595
- 1
- 1
-3
votes
2 answers
How do I close a JFrame that opened another frame?
I've a program that starts with a welcomeScreen JFrame, on which it has a JButton with the option of starting the game.. when I click that button, it opens the JFrame with my game however it does not close.. anyway of how to do this? I only know…

mhalabi
- 31
- 6