Questions tagged [startup]

Startup usually refers to the processes or events that occur at the start of a program, at the beginning of execution of a code block, or when a device is first booted.

2846 questions
1
vote
0 answers

Run a MOBILE Adobe AIR application at startup

In a desktop AIR application you can use this to make your app run at startup: if (NativeApplication.supportsStartAtLogin) { NativeApplication.nativeApplication.startAtLogin = true; } But this doesn't work in mobile apps (iOS, Android, BB). Is…
OMA
  • 3,442
  • 2
  • 32
  • 39
1
vote
1 answer

How to automatically start and advance a few steps in an application in background in linux?

I'm using Genymotion to run WhatsApp on Ubuntu 13.04 as I don't own an Android. To get to Whatsapp everytime I login, I have to 1) open terminal and run ~genymotion/genymotion 2) click a button on the GUI which opens up another new window (play…
Abhishek Pathak
  • 107
  • 1
  • 1
  • 5
1
vote
2 answers

HOWTO: specify in app.config to call a function before Main() is called?

I really want to put in some sort of section handler into App.config that will execute some code before the application actually starts executing at Main. Is there any way to do such a thing?
skb
  • 30,624
  • 33
  • 94
  • 146
1
vote
1 answer

Run Mono App on startup in Ubuntu with "startup applications"

Relative to same problem of Run Mono Application on Startup with Upstart, here this something that I don't understand: In "startup applications", (1) I added a new program (Terminal) with the command: gnome-terminal Ok, the terminal opens on…
Jeferson Preti
  • 57
  • 2
  • 12
1
vote
1 answer

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…
Tom Brown
  • 558
  • 1
  • 8
  • 20
1
vote
2 answers

iOS, change splash screen by code

Basically, I want my app could change its splash screen by app settings. Settings are saved in plist file. Actually it's about different language, I want enable my user to choose my app language, even if it's different with the system preferred…
JimZ
  • 1,182
  • 1
  • 13
  • 30
1
vote
2 answers

Dialog start only the first time on startup?

I tried to make a dialog on startup of my application like this: @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); AlertDialog.Builder builder = new AlertDialog.Builder(this); …
David_D
  • 1,404
  • 4
  • 31
  • 65
1
vote
0 answers

Testing Glassfish startup behavior

I have a webservice deployed on Glassfish (version 3.1.2.2). On startup a method is run (using @PostConstruct) that is to retrieve unfinished requests from a database and queue them for processing. I would like to test the startup behavior of the…
Wojtek
  • 2,514
  • 5
  • 26
  • 31
1
vote
1 answer

IntelliJ on startup "compacting indices"

Today I have started working offsite using a vpn connection to get access to the companies network. Unfortunately I start my work with intellij not wanting to startup. The splashscreen gets stuck with a loader appearing saying "compacting…
Timo
  • 930
  • 2
  • 10
  • 22
1
vote
1 answer

Automatically load map in R from script on startup error

I've been trying to get this working without any luck (I'm new to R so don't really know how to do much and have been following examples). Basically I have an R script created that will automatically load a map when run, saved as .R…
1
vote
0 answers

VB.NET Startup Form Won't Change

I have 4 forms in my application, and of course, Form1 loads first. I went into the Application Properties and changed the startup form to Form4, which I want as the startup form. For some reason, Form1 always is still coming up first for some…
user2155059
  • 151
  • 3
  • 14
1
vote
1 answer

How to write Gradle startup script

I have a Gradle app that I startup using ./gradlew run. This works fine, but I'm trying to deploy to an AWS instance (Ubuntu 12) and I would like the script to execute on boot. I tried writing a startup.sh file with the above command, but no dice.…
Michael D Johnson
  • 889
  • 1
  • 10
  • 21
1
vote
1 answer

spring and commons configuration

I am using the commons configuration api for managing the application configuration and start up parameters. This is a web based application with Struts 2 and Spring 3 in my project. Does spring or struts have any facilities for reading…
Alireza Fattahi
  • 42,517
  • 14
  • 123
  • 173
1
vote
1 answer

Java EE 7 + GlassFish 4 - Run bean on startup

Using CDI is there a way to cause a bean to be instantiated when the application server starts up? I would like to be able to do something like:- @Singleton @Startup public class StartupBean { ... } Unfortunately, although the @Singleton annotation…
cbl.adp
  • 244
  • 1
  • 4
  • 16
1
vote
1 answer

Allow program priveledges to change PC Name from any account on startup?

I'm writing a basic program that on start-up sends the PC's active NIC to the server and changes the PC's host name appropriately. The process is outlined below. Program Execution Process: Started automatically by any account Collects active NIC…
CoderWalker
  • 299
  • 4
  • 14