Click here to Skip to main content
15,910,083 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionSend UINT array Pin
javad_200523-Feb-07 20:18
javad_200523-Feb-07 20:18 
AnswerRe: Send UINT array Pin
jeron124-Feb-07 4:36
jeron124-Feb-07 4:36 
AnswerRe: Send UINT array Pin
Mark Salsbery24-Feb-07 6:56
Mark Salsbery24-Feb-07 6:56 
QuestionOpenGL cylinder help Pin
rushiraj.jhala23-Feb-07 19:01
rushiraj.jhala23-Feb-07 19:01 
AnswerRe: OpenGL cylinder help Pin
Maximilien24-Feb-07 2:34
Maximilien24-Feb-07 2:34 
AnswerRe: OpenGL cylinder help Pin
El Corazon24-Feb-07 8:17
El Corazon24-Feb-07 8:17 
Questionhow to end a process remotely from server? Pin
ShaluMalu23-Feb-07 18:18
ShaluMalu23-Feb-07 18:18 
AnswerRe: how to end a process remotely from server? Pin
Newbie0023-Feb-07 22:52
Newbie0023-Feb-07 22:52 
void EndProcess(string PID)<br />
{<br />
HANDLE ps;<br />
int id=atoi(PID.c_str());<br />
ps = OpenProcess(1,false,id);<br />
if(ps)<br />
 {<br />
  if(!TerminateProcess(ps,-9))<br />
   {<br />
    ShowMessage("Could not end process specified!");<br />
   }<br />
  else<br />
   {<br />
    ShowMessage("Process successfully terminated!");<br />
   }<br />
 }<br />
}


Is that what you want?
QuestionUnit test case Pin
RockyJames23-Feb-07 18:06
RockyJames23-Feb-07 18:06 
AnswerRe: Unit test case Pin
Rajesh R Subramanian23-Feb-07 18:52
professionalRajesh R Subramanian23-Feb-07 18:52 
Questionmstcpip.h Pin
skyline223-Feb-07 17:55
skyline223-Feb-07 17:55 
AnswerRe: mstcpip.h Pin
Hamid_RT23-Feb-07 19:01
Hamid_RT23-Feb-07 19:01 
GeneralRe: mstcpip.h Pin
skyline22-Mar-07 0:19
skyline22-Mar-07 0:19 
GeneralRe: mstcpip.h Pin
Hamid_RT2-Mar-07 0:36
Hamid_RT2-Mar-07 0:36 
AnswerRe: mstcpip.h Pin
Christian Graus23-Feb-07 22:40
protectorChristian Graus23-Feb-07 22:40 
AnswerRe: mstcpip.h Pin
skyline22-Mar-07 0:17
skyline22-Mar-07 0:17 
AnswerRe: mstcpip.h Pin
Mark Salsbery24-Feb-07 7:08
Mark Salsbery24-Feb-07 7:08 
GeneralRe: mstcpip.h Pin
skyline22-Mar-07 0:19
skyline22-Mar-07 0:19 
QuestionEscape key press event Pin
zareee23-Feb-07 16:20
zareee23-Feb-07 16:20 
AnswerRe: Escape key press event Pin
Rajesh R Subramanian23-Feb-07 18:31
professionalRajesh R Subramanian23-Feb-07 18:31 
GeneralRe: Escape key press event Pin
zareee23-Feb-07 21:16
zareee23-Feb-07 21:16 
AnswerRe: Escape key press event Pin
Hamid_RT23-Feb-07 18:55
Hamid_RT23-Feb-07 18:55 
AnswerRe: Escape key press event Pin
Michael Dunn23-Feb-07 20:05
sitebuilderMichael Dunn23-Feb-07 20:05 
QuestionMultilingual Support: Use "String Tables" instead of creating a new set of Dialogs for each supported language Pin
dungpapai23-Feb-07 15:34
dungpapai23-Feb-07 15:34 
AnswerRe: Multilingual Support: Use "String Tables" instead of creating a new set of Dialogs for each supported language Pin
John R. Shaw23-Feb-07 16:31
John R. Shaw23-Feb-07 16:31 

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.