Click here to Skip to main content
15,900,815 members
Home / Discussions / C#
   

C#

 
GeneralRe: The update() of my application doesnt perform any updates or deals with concurrency! Pin
petrericardo11-Nov-09 21:18
petrericardo11-Nov-09 21:18 
GeneralRe: The update() of my application doesnt perform any updates or deals with concurrency! Pin
Christian Graus11-Nov-09 21:35
protectorChristian Graus11-Nov-09 21:35 
GeneralRe: The update() of my application doesnt perform any updates or deals with concurrency! Pin
petrericardo11-Nov-09 23:42
petrericardo11-Nov-09 23:42 
Questionado.net performance and scalability Pin
uglyeyes11-Nov-09 18:56
uglyeyes11-Nov-09 18:56 
AnswerRe: ado.net performance and scalability Pin
Christian Graus11-Nov-09 20:37
protectorChristian Graus11-Nov-09 20:37 
AnswerRe: ado.net performance and scalability Pin
Christian Graus11-Nov-09 20:37
protectorChristian Graus11-Nov-09 20:37 
QuestionApplication Opening again and again Pin
MathewPV11-Nov-09 18:37
MathewPV11-Nov-09 18:37 
AnswerRe: Application Opening again and again Pin
vivasaayi11-Nov-09 18:46
vivasaayi11-Nov-09 18:46 
In the Main method, Use Process class to determine if an instance of your program is already running. If running then display an Error Message and Close. Otherwise start the Application.

USe the following method to test if the application is running.

public static bool IsProcessOpen(string name)
        {
            foreach (Process clsProcess in Process.GetProcesses()) 
            {        
                if (clsProcess.ProcessName.Contains(name))
                {                        
                    return true;
                }
            }        
            return false;
        }

AnswerRe: Application Opening again and again Pin
Giorgi Dalakishvili11-Nov-09 19:06
mentorGiorgi Dalakishvili11-Nov-09 19:06 
AnswerRe: Application Opening again and again Pin
Luc Pattyn12-Nov-09 2:46
sitebuilderLuc Pattyn12-Nov-09 2:46 
Questionclick combobox open windows form with datagridview Pin
vikas shukla11-Nov-09 18:28
vikas shukla11-Nov-09 18:28 
AnswerMessage Closed Pin
11-Nov-09 18:35
stancrm11-Nov-09 18:35 
GeneralRe: click combobox open windows form with datagridview Pin
vikas shukla11-Nov-09 20:25
vikas shukla11-Nov-09 20:25 
QuestionMarshalling array segment from C# to C++ Pin
dybs11-Nov-09 18:18
dybs11-Nov-09 18:18 
AnswerRe: Marshalling array segment from C# to C++ [SOLVED] Pin
dybs12-Nov-09 18:47
dybs12-Nov-09 18:47 
Questionhow to abort the running multi Thread Pin
scoket11-Nov-09 16:46
scoket11-Nov-09 16:46 
AnswerMessage Closed Pin
11-Nov-09 18:15
stancrm11-Nov-09 18:15 
GeneralRe: how to abort the running multi Thread Pin
scoket11-Nov-09 19:28
scoket11-Nov-09 19:28 
AnswerRe: how to abort the running multi Thread Pin
Shameel11-Nov-09 22:34
professionalShameel11-Nov-09 22:34 
QuestionACOS3 -24 card reading Pin
AnasChavadi11-Nov-09 16:36
AnasChavadi11-Nov-09 16:36 
AnswerRe: ACOS3 -24 card reading Pin
Dave Kreskowiak11-Nov-09 16:52
mveDave Kreskowiak11-Nov-09 16:52 
QuestionComments for your code.. generating MSDN style files Pin
Jacob Dixon11-Nov-09 15:24
Jacob Dixon11-Nov-09 15:24 
AnswerRe: Comments for your code.. generating MSDN style files Pin
Christian Graus11-Nov-09 15:36
protectorChristian Graus11-Nov-09 15:36 
GeneralRe: Comments for your code.. generating MSDN style files Pin
PIEBALDconsult11-Nov-09 16:48
mvePIEBALDconsult11-Nov-09 16:48 
GeneralRe: Comments for your code.. generating MSDN style files Pin
Shameel11-Nov-09 22:37
professionalShameel11-Nov-09 22:37 

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.