The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
60 views

Issue with static variables in Java

I need an explanation for the output of the below code: class Stats { static int a = 10; int b = 20; void printMe() { System.out.println(a+b); } } public class Static { ...
0
votes
0answers
58 views

Android: Action Bar and simulating TabHost behavior (SingleInstance nonsense)

I've just inherited an app from a new client. Their old code used a TabHost to provide navigation across several ListViews. They recently migrated the entire app to use the Action Bar instead; ...
1
vote
1answer
33 views

Allow only one application instance

I'm sorry about my title may be it make you confusing (it's just I don't know what words should I use). My problem is I don't want to allow user to open my application multiple time. Please help. ...
0
votes
0answers
24 views

About using singleInstance and onNewIntent together

If I run the app on 2.3.3 onNewIntent works but if I run the app on 4.0 onNewIntent does not work. App's launchmode=singleInstance. Why?
1
vote
1answer
147 views

JNLP SingleInstanceService Use in Command Line JAR Application

I have a desktop Java application that is run from the command line, which takes in some arguments and performs some actions based on these arguments. Currently, the application is instantiated ...
1
vote
2answers
452 views

Integrating Facebook and LinkedIn in Android app

I have an app that integrates both Facebook and LinkdedIn networks. According to the instructions, in order to integrate LinkedIn, I need to add the following code in my manifest, within my activity: ...
0
votes
2answers
70 views

True singleton for whole computer?

How to create a real singleton for a whole computer in Java? I have a console app written in Java. if application is executed for a second time I want it to know that the main application is already ...
0
votes
2answers
152 views

android singleinstance activity not single if back button pressed

I encountered an interesting issue, where an Activity is created multiple times, even it is defined as a singleTask or a singelInstance Activity in the manifest. Here is how this can be reproduced. ...
1
vote
0answers
82 views

java SingleInstanceService doesn't always work

I have a javafx application started from web start via a link on a webpage. The SingleInstanceService works fine when I have a running instance and try to open another one. But when no instances are ...
0
votes
0answers
161 views

Application.Restart() + Single Instance conflict in windows application

Hi Friends, I have a windows application where i controls single instance. When this application updates using clickonce, application will restart after applying updates. The application restarts ...
8
votes
3answers
273 views

Correct .NET way to implement a single instance application [closed]

I have seen at least three distinct methods on StackOverflow for achieving this. Using a MUTEX: Accepted answer to this SO question Using the Microsoft.VisualBasic library's ...
1
vote
1answer
151 views

How to find my JavaFX application in process manager?

I have a JavaFX application that should check if it has already been launched when you launch it (need only single instance running at the time). The problem is how to define it! I have tried packing ...
0
votes
1answer
135 views

How to Programmatically Restart a Single Instance application

My WPF program uses SingleInstance.cs to make sure that only one instance of it is running if a user tries to restart it by double clicking a short cut to it or some other mechanism. However, there ...
0
votes
1answer
131 views

Python code: to initialise only one instance of a class

Sorry novice beginner programmers question about having only one instance of a class run at one time; and now struggling to find right way to structure the code. I've researched but struggling to ...
0
votes
1answer
98 views

WPF Singleton UserControl?

Is there a way to make UserControl a singleton? ex: I have a MainWindow and 2 UserControls {UserControl 'A' and UserControl 'B'} MainWindow have 2 Buttons {Button 'UCA' and Button 'UCB'} UserControl ...
0
votes
1answer
153 views

android:launchMode=“singleTask” NOT prevent multiple root activities from being co-existing

My intent was to ensure the root activity in the task had only a single instance at any condition. So I set android:launchMode="singleTask", which worked fine in most cases. However, if I switched ...
2
votes
3answers
188 views

How to enforce single instance of an application under mono?

So, I am able to enforce single instance of my application on Windows as follows. [STAThread] class method Program.Main(args: array of string); begin var mutex := new Mutex(true, ...
0
votes
1answer
137 views

How can I make an instance of UINavigationController?

In my first iphone app I have a NavigationController. How can I define in AppDelegate an instance of UINavigationController and set that for my default navigation controller? in .h: @interface ...
1
vote
0answers
102 views

WCF: How to (json) map a DataMember that is sometimes an array, sometimes a single object?

When writing up the title to this question, I happened upon this answer. However I'm looking for a way to do this in a WCF client. Is there a way to plug JSON.Net into a WCF client? Yahoo! just ...
0
votes
1answer
219 views

How to reopen java application launch4j single instance

Summary: make invisible app visible again by clicking desktop icon. I have created a java desktop application and used Launch4j to create the executable. My application needs to run as a single ...
0
votes
1answer
177 views

Connecting to multiple databases via a single struts - hibernate application

We have a struts-hibernate-mysql application running on tomcat. We want to have the same codebase for the application but would like to have the application connect to different databases dynamically ...
2
votes
2answers
109 views

about singleton

Well i read singleton are bad because they are anti pattern. I also read that the main reason for this is the global reference to singleton, anyway: is it always possible to avoid singleton? If so, ...
1
vote
3answers
972 views

How to run one instance of a c# WinForm application?

I've a C# application that displays a login form when launched and displays the main form after users are authenticated. I used Mutex to restrict that only one instance of my application runs. And, ...
2
votes
3answers
693 views

How should I scope dependency injection of Entity Framework DbContext in a web app? (InstancePerHttpRequest vs SingleInstance)

I have read that DbContext object should be created as InstancePerHttpRequest, not SingleInstance, because of its thread-unsafe nature and it might consume too much resource between requets which ...
0
votes
1answer
225 views

Using EventWaitHandle to ensure a single instance across multiple users

Collaborators have built a prototype using Processing that connects to a Sparkfun RFID reader, I think using a serial connection over USB. We've deployed the prototype into a number of trialists' ...
0
votes
6answers
454 views

Start application just one time C#

I just make an application in C#, but something I don't like. I want to make the application running just one time. Now, if my application is running, when I run the application again, will start ...
0
votes
2answers
282 views

Force single instance of TopShelf service

I'm using TopShelf to host my windows service. This is my setup code: static void Main(string[] args) { var host = HostFactory.New(x => { x.Service<MyService>(s => ...
1
vote
1answer
194 views

Prevent SingleTask app from closing when returning to the calling app

I have two apps, which I will refer to as app A and app B. App B is a single task app and normally, if you start this app from the Home screen and use the Back button, you will not be allowed to ...
1
vote
5answers
406 views

Run one instance of java application [duplicate]

Possible Duplicate: How to implement a single instance Java application? is there a way to run only one instance of Java application so only I have one process? . is it possible to do it ...
0
votes
1answer
1k views

android:launchMode=“singleInstance” does not allow activity for results update

When set to single instance, the Activity does not allow another Activity to update it using Activity for results method. What is the flag I should set so that I do not have to remove the initial ...
2
votes
1answer
334 views

Syncing between multiple instances of the same program

I have quite a complicated programming problem on my hands, so bear with me for a few minutes. I decided i want to create a media player in WPF (C#) and i've run into a bit of a pickle. I want my ...
0
votes
3answers
990 views

Windows.Forms: Activate an application that is already running in right FormWindowState

Our application has the following requirement: If the application is running and I start the application again, the first instance has to be activated instead to open a new instance. To realize this, ...
2
votes
0answers
145 views

CantStartSingleInstanceException when trying to start second instance

I'm trying to build a single instance application using the approach outlined here. The reason I tried going with that solution is that I need to pass on the commandlines from the second attempt to ...
0
votes
2answers
414 views

Alternative to Singleton-Factory

I'm writing a wrapper around a class library that I have no control over. In this library is a class (let's call it Target) that I want to ensure is only instantiated once, but it is not, in itself, ...
2
votes
2answers
365 views

How to prevent open my application more than one time? [duplicate]

Possible Duplicate: What is the correct way to create a single instance application? How can I define my application to open only one time after click on its exe file over and over?
2
votes
2answers
735 views

Allow only one instance of JInternalFrame

I've created a Swing application with several JInternalFrames which gets added to a JDesktopPane on the event of a mouse click. I want only one instance of the same Internal frame to be present on the ...
0
votes
5answers
871 views

Detect if CountdownTimer is running or not

I created a countdowntimer and it starts now if a boolean is true, what would be better if I detect if the timer is running. Is there a way to do that? I created the following class with the ...
2
votes
1answer
255 views

I need to use “singleInstance” in main activity, and also i need bring another activity to the top

I need only one instance of my app, so I use android:launchMode="singleInstance" in main activity section in manifest, but this causes: when I click on home button when second activity is displayed ...
2
votes
1answer
1k views

How to enable only one instance of my application

I need only one instance of my app in android. If I run my app after installation and go to Home screen, and again run my app (click on app's icon), second instance is opened, I need to open already ...
3
votes
1answer
1k views

Getting Permission error java.lang.SecurityException: Permission Denial on 3.x Android devices while getting email attachment name

I am facing issue in opening Email in MYApp when I made its launch mode to "singleInstance". I have attached sample Android project which reads file name from email attachment and displays it on ...
0
votes
1answer
140 views

Mutual Exclusion not Working with the .NET Mutex Class

How can I achieve mutual exclusion using two named mutexes? The following code should work but it doesn't: [TestMethod] public void xdfgndygfn() { using (var mutex1 = new ...
1
vote
0answers
181 views

Windows registry. Start single instance (not many) of application.

I have created a .NET application and I need to add a reference to it, to windows context menu. I've did it this way: added HKEY_CLASSES_ROOT\*\shell\myapp\command to my registry. It works but starts ...
1
vote
2answers
656 views

PyQt - how to detect and close UI if it's already running?

I'm starting the UI from within Maya. If the UI hasn't been closed, running the UI again will completely freeze Maya (with the error "Event Loop is already running") Manually closing the UI before ...
1
vote
4answers
282 views

not global Singleton design pattern? [duplicate]

Possible Duplicate: A Singleton that is not globally accessible Do you know a good design pattern that would make sure that only one instance of an object is created without making this ...
1
vote
1answer
332 views

Restrict user to a single window

In a project I'm working on (ASP .Net 3.5 web forms), there is a requirement to restrict the user to work in only 1 window/tab at time. I found this post detailing a solution: ...
0
votes
1answer
204 views

as3 unique login session

I've got a login working flash >> PHP >> MYSQL and capable of doing everything I need. However, I've been presented with an issue that a person could be logged in under the same account and start ...
0
votes
1answer
189 views

Single Instance Activity does not receive Input events

I have 2 single instance activities in my app one is Log in Activity(A) which is also startup screen and other is kind of application home Activity(B). If I am on B and press home key on phone and go ...
0
votes
1answer
142 views

Java reuse Dimension objects when setting component size

Is it contraindicated to use several presetted dimension objects to set the preferred size of non resizable components on the screen. E.g.: two textfields both should be 80x20 px so: Dimension d = ...
3
votes
1answer
107 views

Ways to acheive de-duplicated file storage within Amazon S3?

I am wondering the best way to achieve de-duplicated (single instance storage) file storage within Amazon S3. For example, if I have 3 identical files, I would like to only store the file once. Is ...
2
votes
2answers
592 views

Java single instance software with socket. issue in closing socket under windows

I need to force my Java application to run with a single instance. I found on this link this very nice piece of code that solve the problem using socket instead of using the file system. here the as ...

1 2 3