The application-singleton tag has no wiki summary.
5
votes
1answer
636 views
Maximize application in system tray?
I wrote a little WPF app that when 'closed' minimizes to the system tray (customer requirement). Double clicking pops it back up, or right click gives a context menu to exit.
But if the app is ...
2
votes
4answers
333 views
.NET - limiting the number of instances of an execution unit
Let's say I have an application written in C# called EquipCtrl.exe which runs as a local process on a PC to control a piece of equipment.
Obviously, I would wish to have only one instance of ...
1
vote
2answers
134 views
Playframework: Best Solution for loading & using constant Strings
I have a bunch of static Strings that I'd like to store in a .yml file. What's the best design practice to load them to a Java Class & use it.
In other words, I'm looking for an Application-wide ...
1
vote
1answer
81 views
Consequences of Singletons
So I just delved into the Singleton classes and yes, I find them quite helpful. I use my singletons mostly for data storage for multiple targets (views, tables etc.). That being said, I can already ...
0
votes
2answers
215 views
Singleton managedObjectContext
I want to use the singleton UIApplication to access the managedObjectContext of the AppDelegate. But when I write
[[[UIApplication sharedApplication] delegate] managedObjectContext]
or
...
0
votes
2answers
1k views
Android: Best way to save data stored in Application Singleton Class
What's the best way to save the data stored in the Application Class (singleton) of an Android Application?
I have a quiet big app that shares a lot data between the activities. So most of it is ...
0
votes
2answers
147 views
android,instatiate singleton class objects
can any one tell me Where to instantiate singleton class object like arrayList(); i am trying to instantiate in on create method
but its not instantiated can any one tell me where to allocate it
...
0
votes
0answers
133 views
using Mutex causing application to hang on Win XP X64
I used the following code to verify the single instance of application. On Win XP X86 it is working fine, but on X64 after 3 to 4 minutes System generates StackOverflowException and causes the ...