startup

Developing photo gallery application

I want to develop a photo gallery in Blackberry. Please give any suggestions about functionality and implementation. ...

Eclipse project explorer expand on startup

Is there a way to get Eclipse to save the state of the project explorer tree and expand to where it was on startup? Every time I shut down Eclipse and start it back up, the file I had open last is opened, but the tree in the project explorer is completely collapsed... ...

Spring web Dependency Injection(IOC) and the ServletContextListener

Hi all, I have code which is structured as Spring beans and dependencies among them. This is only a small part of the code since the rest is 'legacy' code. At this point in time I would like to perform an action on one of these beans in an existing 'legacy' class that extends javax.servlet.ServletContextListener. This class initializes...

How to create program startup parameters in python

I'm just beginning to learn python and the program I'm writing requires parameters for it to run with a specific task. For example (programs name is Samtho) samtho -i Mozilla_Firefox How can I do that? ...

Starting a Firefoxprofile in a startupscript?

How do you start a Firefox-profile in a startupscript? This want do: Set shell = CreateObject("WScript.Shell") progList = Array("C:\Program Files\Mozilla Firefox\firefox.exe" -P "PrimaryNew" -no-remote") For Each prog in progList 'WScript.Echo "File Name: " & prog shell.run """" & prog & """", 1, false WScript.sleep 1000...

Change startup order c#

Possible Duplicate: Open form before windows login c# Hey, how do I change the startup list? Basically I have a program that is a computer locking system and when I enter it into the registry to start up when login, it is like the last thing to open, Thanks. ...

Loading circle animation in iphone

Hi, How can I display the loading screen animation in iphone? I mean the bars arranged in circles. So that I can use it while some of the part of my app is loading, like initializing. Or should I create may own animation loading? Thanks. ...

How can I write a startup script for Mac OS X?

I have created a jar file in java, and I want to make the application automatically start during system boot up. I found I have to write a shell script for that. What should be that shell script look like? Is there anything else I have to do to make an application automatically start at boot up? ...

System Tray Icon not appearing on startup

I use the following code in the FormCreate event handler to create a system tray icon. When I run my program the system tray icon appears fine. I set my application be started automatically on windows start up. When I restart the computer my application's process is started but the system tray icon never appears. I think it might b...

Segmentation fault when instantiating object from particular library

I have an C++ application (heavily shortened down, shown below); #include <iostream> #include "MyClass.h" void foobar() { MyClass a; } int main(int argc, char** argv) { std::cout << "Hello world!\n"; return 0; } Where "MyClass" is defined in a statically linked library (.a). However, this application Segfaults the instant its ...

iPhone app was working, suddenly starts crashing on startup, reinstall fixes, but why?

Here's the situation: -Had a development build of the app we just submitted on my phone, working fine for days (and previous builds worked fine for weeks). -Yesterday, I touched the app icon, the app launches then crashes out (I wasn't connected to my computer at the time, but if I had to guess, it was around or before when applicationD...

.net, UserControls, and application start time

We have a medium sized application that depends on several usercontrols, namely: A tablelayout panel, with 2x5 grid of usercontrols, with 3+ levels of inheritance. A big issue we're running into with our application has proven to be startup time (both cold\warm), one of the big big hangups we're getting is initializing this usercontrol...

Automatically Loading At App Start

[Cocoa/Objective-C] I adapted a timer routine (for current time) from this site (and it works great - thanks). It's currently attached to a button. My question is: How do I make it start when my app starts up (and not use a button) (in other languages, I'd simply put the action listener or timer in the Form)...? Thank for any help on...

Calling ThreadPool.QueueUserWorkItem from Global.Asax Application_Startup

Is it a good pattern to call ThreadPool.QueueUserWorkItem from Application_Startup in Global.Asax . My intention is to call some Lucene indexing tasks. ...

Auto startup and shutdown of VMs in Hyper-V

I want to be able to automate startup and shutdown of a Windows XP VM running under Hyper-V on Windows 2008. The VM should only be available during office hours. Its a standard Windows XP (SP3) installation. So the VM should startup at 8am and shutdown at 6pm (regardless of any running applications) according to a schedule that I can e...

Why is my .Net app contacting Verisign?

I wrote a .Net application that has nothing to do with network communication. There is not a single line of code in the whole application that uses the NIC, but my firewall has caught it trying to contact Verisign for some reason when the app starts. This does not happen regularly; as a matter of fact, it has only happened twice. The la...

MSMQ backed WCF service hosted in a windows service fails on startup

I have a WCF service hosted in a Windows service that I set to Automatic so it will start automatically when the server is brought up. The service is endpoint is MSMQ backed. When I start the service manually, everything is good. But when the service starts on bootup, I get a MSMQ exception: System.TypeInitializationException: The typ...

How to change StartupUri of WPF Application?

I am trying to modify App.cs and load the WPF XAML files from code behind but its not working as it should. No matter whatever I try to set as StartupUri it doesnt start, the program quits after this. public partial class App : Application { protected override void OnStartup(StartupEventArgs e) { base.OnStartup(e); ...

Entire jar is read for every getResourceAsStream

Hi I am profiling a java applet startup time. I have noticed that a huge jar of size 5MB is fully read every time a resource from the jar is requested. E.g. images log configuration files, I18N files etc.... Sould it behave that way? Is it possible just to jump to the correct point ? Is it possible to read the file only once? If I will...

What is the C# equivalence of startup module we had in vb6.0?

hi What is the win-based application developing with C# equivalence of startup module we had in vb6.0? a static class ? or what? ...