Click here to Skip to main content
15,881,812 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionReset to computer Pin
RomTibi6-Apr-10 9:57
RomTibi6-Apr-10 9:57 
QuestionRe: Reset to computer Pin
David Crow6-Apr-10 10:04
David Crow6-Apr-10 10:04 
AnswerRe: Reset to computer Pin
RomTibi6-Apr-10 10:24
RomTibi6-Apr-10 10:24 
AnswerRe: Reset to computer Pin
David Crow6-Apr-10 10:26
David Crow6-Apr-10 10:26 
GeneralRe: Reset to computer Pin
RomTibi7-Apr-10 5:29
RomTibi7-Apr-10 5:29 
AnswerRe: Reset to computer Pin
Eugen Podsypalnikov6-Apr-10 10:07
Eugen Podsypalnikov6-Apr-10 10:07 
GeneralRe: Reset to computer Pin
RomTibi7-Apr-10 5:29
RomTibi7-Apr-10 5:29 
AnswerShutdown -r Pin
gamefreak22916-Apr-10 11:07
gamefreak22916-Apr-10 11:07 
As someone else already suggested, you can use the command "shutdown -r" which will run just as though you used it through command prompt. An example:
void main()
{
	system("shutdown -r");
}


This will default to a 30 second timer before the computer begins to shutdown. With some effort, you should be able to find a way to decrease the timer, although I'm not positive.

EDIT: system("shutdown -r -t 10"); that will set the shutdown timer to 10 seconds, instead of the default 30. The command shutdown tells the computer what to do, "-r" is for resetting the computer, "-t xx" (-t 10) sets the time to the amount of seconds you indicate, so if your code were "system("shutdown -r -t 1");" The computer would start resetting one second after your program executes that line of code. Theoretically you can set it to 0 seconds, but I don't feel like testing that one Poke tongue | ;-P
GeneralRe: Shutdown -r Pin
RomTibi7-Apr-10 5:30
RomTibi7-Apr-10 5:30 
QuestionVisual C++ Solution in GCC Pin
darc koder6-Apr-10 7:12
darc koder6-Apr-10 7:12 
AnswerRe: Visual C++ Solution in GCC Pin
Maximilien6-Apr-10 8:57
Maximilien6-Apr-10 8:57 
AnswerRe: Visual C++ Solution in GCC Pin
CPallini6-Apr-10 9:44
mveCPallini6-Apr-10 9:44 
AnswerRe: Visual C++ Solution in GCC Pin
David Crow6-Apr-10 10:07
David Crow6-Apr-10 10:07 
QuestionVertical/Horizontal scroll bar not coming in CListCtrl Pin
_T("No name")6-Apr-10 3:45
_T("No name")6-Apr-10 3:45 
AnswerRe: Vertical/Horizontal scroll bar not coming in CListCtrl Pin
_T("No name")6-Apr-10 3:50
_T("No name")6-Apr-10 3:50 
Questionbm_setstate redraw not working Pin
Jach Mullan5-Apr-10 23:57
Jach Mullan5-Apr-10 23:57 
AnswerRe: bm_setstate redraw not working Pin
Eugen Podsypalnikov6-Apr-10 1:58
Eugen Podsypalnikov6-Apr-10 1:58 
Questionsyntax error [modified] Pin
rupeshkp7285-Apr-10 22:30
rupeshkp7285-Apr-10 22:30 
QuestionRe: syntax error Pin
CPallini5-Apr-10 22:33
mveCPallini5-Apr-10 22:33 
AnswerRe: syntax error Pin
rupeshkp7285-Apr-10 22:40
rupeshkp7285-Apr-10 22:40 
QuestionRe: syntax error Pin
CPallini5-Apr-10 22:47
mveCPallini5-Apr-10 22:47 
AnswerRe: syntax error Pin
rupeshkp7285-Apr-10 23:07
rupeshkp7285-Apr-10 23:07 
GeneralRe: syntax error Pin
CPallini5-Apr-10 23:20
mveCPallini5-Apr-10 23:20 
GeneralRe: syntax error Pin
rupeshkp7286-Apr-10 0:42
rupeshkp7286-Apr-10 0:42 
GeneralRe: syntax error Pin
CPallini6-Apr-10 0:50
mveCPallini6-Apr-10 0:50 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.