Questions tagged [restart]

Restart refers to the process where a software program or system is systematically (and preferably gracefully) shut down then automatically invoked to full functionality without intervention from the user.

Restart is also often referred to as reboot or reset.

Restarting a software program or system is one of the most common ways to troubleshoot problems as it will put the program or system back into a fresh and predictable state

1535 questions
0
votes
3 answers

Restart w2k3 on asm

Please tell me how to cause reboot w2k3 (Without using rpc-calls to do it) on the assembler. In advance thanks!
Zell
0
votes
1 answer

How to reset an applet so that the information is not piled up each time?

I'm writing a java applet with a reset button so that users can restart the app with a specified number of objects, and when the reset button is clicked, this method that I have defined gets called: public void reload(int new_number){ …
kjh
  • 3,407
  • 8
  • 42
  • 79
0
votes
3 answers

Restart Java Application

I need to create a java application where the user is asked if they want to continue or not after each question. E.g What is your name? Do you want to continue? Y/N What pizza do you want to order? So far my code is like this, But I don't know what…
Matt Ellwood
  • 105
  • 1
  • 13
0
votes
2 answers

Collapsing previous activities and restarting the app

I have an Android app in which activity A calls activity B which calls activity C. in activity C there is button to restart the whole thing but the user should be able to navigate between the activities if he presses the back button. I've tried…
DAndroid
  • 3
  • 3
0
votes
1 answer

For loop in android stopping short and restarting

The loop below seems to stop short, and then restart. It is not inside of another loop. The first Log call prints 36, thus the outer for loop should run 36 times. The Log call inside of the loop though, which is meant to print the number of times…
Jonathan Wrona
  • 423
  • 2
  • 7
  • 19
0
votes
1 answer

Restart a jQuery Function. onClick

I am writing a jQuery program that automatically "types" a block of text. I am trying to allow the user to restart the function "Clear the text and restart the function" I'm not sure how to do this. Here is the Code: var char = 0; var caption =…
Chris Frank
  • 4,124
  • 4
  • 30
  • 42
0
votes
1 answer

Android: Avoid phone restart when clicking home button

I'm programming an app, and I have to solve this problem... Being in any of the activities, when clicking the home button the phone restarts, and I don't want that to happen. I know that clicking the home button brings the app to the background, and…
acm46
  • 9
  • 2
0
votes
1 answer

azure - linux virtual machine stuck at "stopping"

i have been experimenting with azure services using my msdn account. i created a suse enterprise linux virtual machine. deployed sonar+mysql and a few simple java applications. everything was fine for almost a month, until last weekend. i tried to…
0
votes
1 answer

how to scene restart with restart button after sprite falls below certain hight?

I am struggling with my first semi basic game for iPhone. The game operates well but I want a button to display saying restart and then when clicked it restarts the scene. This button should only appear when my sprite (called sprite) falls below the…
user1432813
  • 162
  • 2
  • 10
0
votes
1 answer

TYPO3 - PHP errors after server restart

We had to restart a server that has a TYPO3 site on it. We made no changes to the database of any of the TYPO3 files themselves, just a standard restart. The issue is that now the server is spewing php errors. I would like to stress that no server…
Jon C Crawley
  • 31
  • 2
  • 6
0
votes
1 answer

Trouble reading XML file on system reboot

I am writing this app in windows form c#. When user exit from this app , it asks for system reboot. While exiting it writes some XML file and saves the file in current directory(bin/debug)....On system restart my app restarts itself (by reading…
Shikha Shah
  • 753
  • 3
  • 12
  • 34
0
votes
2 answers

setResult() does not work after activitiy is restarted

I have three activities A, B and C. A starts B with startActivityForResult(getIntent(), ACTIVITY_B); and B starts C with startActivityForResult(getIntent(), ACTIVITY_C);. ACTIVITY_B and ACTIVITY_C are constants with same value across…
Venkat Reddy
  • 91
  • 3
  • 7
0
votes
1 answer

How to exit and run the Python IDLE shell in one step

Is it possible both to exit and run the Python IDLE in one step? If so, what steps should I take to do this? I want to do something similar to Shell -> Restart Shell (Ctrl+F6) in Windows IDLE. I could do Ctrl-D, up-arrow, enter but I'd like to do…
user1452478
0
votes
1 answer

How to configure Spring Batch RetryPolicy for chunks in job.xml file

I have configured the same as below. But getting exceptions (see later), Please help. The purpose of doing so, is to achieve to restart Steps on failure. ======================================== The retryPolicyJob.xml
Saikat Sur
  • 109
  • 2
  • 9
0
votes
4 answers

How to restart application without exiting and reloading?

When I click a button before it runs the whole method attached to itself, I want the button to reset the whole content. So if i Use Application.Restart(); it would just restart the application but does not run the rest. How will I be able to solve…
Sarp Kaya
  • 3,686
  • 21
  • 64
  • 103