Click here to Skip to main content
15,905,785 members
Home / Discussions / C#
   

C#

 
GeneralRe: Show progressbar while sending email Pin
Blue_Boy29-Jan-09 7:52
Blue_Boy29-Jan-09 7:52 
AnswerRe: Show progressbar while sending email Pin
#realJSOP28-Jan-09 23:28
professional#realJSOP28-Jan-09 23:28 
GeneralRe: Show progressbar while sending email Pin
Blue_Boy29-Jan-09 7:52
Blue_Boy29-Jan-09 7:52 
GeneralRe: Show progressbar while sending email Pin
ali dinparvar21-Jun-12 1:07
ali dinparvar21-Jun-12 1:07 
QuestionReading varbinary(max) Pin
CodingLover28-Jan-09 21:33
CodingLover28-Jan-09 21:33 
AnswerRe: Reading varbinary(max) Pin
SeMartens28-Jan-09 21:45
SeMartens28-Jan-09 21:45 
NewsRe: Reading varbinary(max) Pin
CodingLover28-Jan-09 22:13
CodingLover28-Jan-09 22:13 
GeneralRe: Reading varbinary(max) Pin
SeMartens28-Jan-09 22:17
SeMartens28-Jan-09 22:17 
NewsRe: Reading varbinary(max) Pin
CodingLover28-Jan-09 23:04
CodingLover28-Jan-09 23:04 
GeneralRe: Reading varbinary(max) Pin
SeMartens28-Jan-09 23:15
SeMartens28-Jan-09 23:15 
QuestionRe: Reading varbinary(max) Pin
CodingLover1-Feb-09 17:24
CodingLover1-Feb-09 17:24 
AnswerRe: Reading varbinary(max) Pin
SeMartens1-Feb-09 21:07
SeMartens1-Feb-09 21:07 
QuestionClose all application using c# Pin
sandhya1428-Jan-09 21:28
sandhya1428-Jan-09 21:28 
AnswerRe: Close all application using c# Pin
Ankit Rajpoot28-Jan-09 21:40
Ankit Rajpoot28-Jan-09 21:40 
GeneralRe: Close all application using c# Pin
sandhya1428-Jan-09 21:43
sandhya1428-Jan-09 21:43 
GeneralRe: Close all application using c# Pin
sandhya1428-Jan-09 21:58
sandhya1428-Jan-09 21:58 
GeneralRe: Close all application using c# Pin
SeMartens28-Jan-09 22:00
SeMartens28-Jan-09 22:00 
GeneralRe: Close all application using c# Pin
Ankit Rajpoot28-Jan-09 22:26
Ankit Rajpoot28-Jan-09 22:26 
GeneralRe: Close all application using c# Pin
SeMartens28-Jan-09 22:30
SeMartens28-Jan-09 22:30 
GeneralRe: Close all application using c# Pin
sandhya1428-Jan-09 22:41
sandhya1428-Jan-09 22:41 
GeneralRe: Close all application using c# Pin
SeMartens28-Jan-09 22:53
SeMartens28-Jan-09 22:53 
GeneralRe: Close all application using c# [modified] Pin
charles henington12-May-10 18:44
charles henington12-May-10 18:44 
{

            Process[] processes = Process.GetProcessesByName("notepad");
            
            foreach (Process process in processes)
            {
                process.Kill();
            }

        }


modified on Thursday, May 13, 2010 1:08 AM

GeneralRe: Close all application using c# Pin
Ankit Rajpoot28-Jan-09 22:59
Ankit Rajpoot28-Jan-09 22:59 
AnswerRe: Close all application using c# Pin
SeMartens28-Jan-09 21:43
SeMartens28-Jan-09 21:43 
GeneralRe: Close all application using c# Pin
sandhya1428-Jan-09 22:17
sandhya1428-Jan-09 22:17 

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.