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
1 answer

Adding a function in R for use without loading it

So I have code for a custom function in R, e.g. simply: f <- function(x) return(x) What I want to do is be able to call this function f as if it came with default R. That is, I don't want to have to source() the file containing the code to be able…
user2005253
1
vote
1 answer

IBM i OS/400 QSH - shell script

I've got a startup/stop script provided for Tivoli Workload Scheduler in which it will start/stp[ the TWS services in IBM i. # CHECK ROOT USER WHO=`id | cut -f1 -d" "` if [ "$WHO" = "uid=0(root)" ] then su TWSSVC -c…
user1298788
1
vote
1 answer

Android java startup loosing focus

I'm writing a simple app to enable adb over ethernet on startup of the android, with a cancel button to prevent the enabling of the of the adb on the network. When the pop-up for superuser appears, if clicked immediately everything is fine, but if I…
Fred F
  • 1,027
  • 1
  • 9
  • 18
1
vote
1 answer

Android - activity launched at startup + moveTaskToBack = killed

I work on app that acts like phone guard and should run on startup (or when launched by user) and keep running until user manually won't finish it. When application started (after device boot completed) i use moveTaskToBack for hiding it in…
Maxdestroyer
  • 185
  • 4
  • 12
1
vote
1 answer

Tux Rider compiles but crashes on startup

I wanted to experiment with Android development, so I decided to mess around with drodin's Tux Rider app. I had to create a new project in Eclipse, as drodin's existing one wasn't recognized. From there, I copied and pasted the original project in.…
1
vote
2 answers

Changing Azure .cscfg settings on Role Start

I'm trying to create a startup script or task that changes the configuration settings in the cscfg file, that executes on role start. I'm able to access these settings, but haven't been able to successfully change them. I'm hoping for pointers on…
Blake-o
  • 15
  • 2
  • 8
1
vote
2 answers

Dozer Singleton Startup Bean injetced as Null

I have created an instatiator bean for Dozer (http://dozer.sourceforge.net/). But when I Inject this EJB it throws nullpointer exception. Here is my Singleton Startup Bean for intialising Dozer package com.unijunction.ordercloud.common.rest; import…
jimfromsa
  • 381
  • 2
  • 10
1
vote
3 answers

How to change which form opens when starting a program in VB.net

I created a Windows Forms project in VB.net and I have decided to add another form to appear before Form1. How can I make a different form appear on start up instead of Form1?
Jeremy Lin
  • 400
  • 3
  • 13
1
vote
2 answers

ubuntu ec2 - run python script at startup with arguments

I have a python script i'd like to start on startup on an ubuntu ec2 instance but im running into troubles. The script runs in a loop and takes care or exiting when its ready so i shouldn't need to start or stop it after its running. I've read and…
jonathan topf
  • 7,897
  • 17
  • 55
  • 85
1
vote
1 answer

C# Setting Form 2 as Startup

in c#, i want to set forum 2 as startup form from program.cs, but when i try to change the code piece below i get such an error before changing: static void Main() { Application.EnableVisualStyles(); …
Abdülber Kaya
  • 139
  • 1
  • 2
  • 9
1
vote
1 answer

Have my GTK application started on startup on Linux

I have an C++ executable that include some GTK code. I want this application to be started on startup of my machine (as root). I tried with a init script (that is working perfectly when I use it from my user session), but having a look at the log…
ZedTuX
  • 2,859
  • 3
  • 28
  • 58
1
vote
1 answer

Choose the Startup Form in a Java Application in Netbeans

I've created a java application on netbeans, and I've built it to get it as .jar. now when I run my .jar application it doesn't show anything, I want to run a form in my projet as the default one on the application startup. In visual studio I used…
Aimad Majdou
  • 563
  • 4
  • 13
  • 22
1
vote
1 answer

Qt Executable error : 0xc0000139 trying to merge c++ in qt application

I have a simple application in qt and I'm trying to link some code that I have to it. However, when I'm merging the files in the project, it compiles, but I get an error at startup. When I try to debug it, I get a pop up message telling me…
fd_
  • 49
  • 4
  • 10
1
vote
1 answer

IronRuby Get Start

I know the question have answered before but the newsest start up question is on 2009(at least i did not find anything newest). I would like to find an answers for these days. I am .net software engineer and Occasionally i use intellij and old days…
kostas ch.
  • 1,960
  • 1
  • 17
  • 30
1
vote
1 answer

what is difference between StartupFolder and registry key

I want to add my program to autostart. And see 2 ways to do it: Add registry key to HKCU\Software\Microsoft\Windows\CurrentVersion\Run Add program to Startup. Which way is more appropriate and careful with WiX?
Oleg Sh
  • 8,496
  • 17
  • 89
  • 159