Click here to Skip to main content
15,893,401 members
Home / Discussions / C#
   

C#

 
GeneralRe: How can I convert a string to an type Pin
User 309585922-Jun-06 10:46
User 309585922-Jun-06 10:46 
AnswerRe: How can I convert a string to an type Pin
Insincere Dave22-Jun-06 13:20
Insincere Dave22-Jun-06 13:20 
GeneralRe: How can I convert a string to an type Pin
User 309585922-Jun-06 16:17
User 309585922-Jun-06 16:17 
QuestionStupid String Format Question Pin
gantww22-Jun-06 8:16
gantww22-Jun-06 8:16 
AnswerRe: Stupid String Format Question - Answer Pin
gantww22-Jun-06 8:28
gantww22-Jun-06 8:28 
AnswerRe: Stupid String Format Question Pin
Dustin Metzgar22-Jun-06 8:28
Dustin Metzgar22-Jun-06 8:28 
QuestionSingle process instance object implemetation Pin
h4rdw4re122-Jun-06 8:11
h4rdw4re122-Jun-06 8:11 
AnswerRe: Single process instance object implemetation Pin
Dustin Metzgar22-Jun-06 8:22
Dustin Metzgar22-Jun-06 8:22 
I'm not sure where your problem is. Create a new windows application project in visual studio. Download the code that goes with the article you have. It's a CS file. Add that to your project. Make sure the namespaces are the same. Look in the Form1 code and find the Main method and add the following (as detailed in the article):

using(SingleProgramInstance spi = new SingleProgramInstance())
{
   if (spi.IsSingleInstance)
   {
      Application.Run(new Form1());
   }
   else
   {
      spi.RaiseOtherProcess();
   }
}




Logifusion[^]
QuestionIs the text box value a number Pin
sas949122-Jun-06 7:26
sas949122-Jun-06 7:26 
AnswerRe: Is the text box value a number Pin
Stefan Troschuetz22-Jun-06 7:39
Stefan Troschuetz22-Jun-06 7:39 
AnswerRe: Is the text box value a number Pin
User 665822-Jun-06 7:47
User 665822-Jun-06 7:47 
QuestionBlank datagrid--parameter issue? Pin
leckey22-Jun-06 6:53
leckey22-Jun-06 6:53 
AnswerRe: Blank datagrid--parameter issue? Pin
led mike22-Jun-06 7:45
led mike22-Jun-06 7:45 
GeneralRe: Blank datagrid--parameter issue? Pin
leckey22-Jun-06 8:19
leckey22-Jun-06 8:19 
GeneralRe: Blank datagrid--parameter issue? Pin
Josh Smith22-Jun-06 8:37
Josh Smith22-Jun-06 8:37 
GeneralRe: Blank datagrid--parameter issue? Pin
leckey22-Jun-06 8:52
leckey22-Jun-06 8:52 
GeneralRe: Blank datagrid--parameter issue? Pin
led mike22-Jun-06 9:49
led mike22-Jun-06 9:49 
GeneralRe: Blank datagrid--parameter issue? Pin
Josh Smith22-Jun-06 10:01
Josh Smith22-Jun-06 10:01 
AnswerRe: Blank datagrid--parameter issue? Pin
Josh Smith22-Jun-06 7:52
Josh Smith22-Jun-06 7:52 
Questionhow to refresh or keep the graphics Pin
donkaiser22-Jun-06 6:37
donkaiser22-Jun-06 6:37 
AnswerRe: how to refresh or keep the graphics Pin
Dustin Metzgar22-Jun-06 6:49
Dustin Metzgar22-Jun-06 6:49 
GeneralRe: how to refresh or keep the graphics Pin
donkaiser22-Jun-06 7:05
donkaiser22-Jun-06 7:05 
GeneralRe: how to refresh or keep the graphics Pin
Dustin Metzgar22-Jun-06 7:33
Dustin Metzgar22-Jun-06 7:33 
AnswerRe: how to refresh or keep the graphics Pin
atuldeore22-Jun-06 7:16
atuldeore22-Jun-06 7:16 
QuestionA program to organize and fix data. Pin
Noah Moerbeek22-Jun-06 5:38
Noah Moerbeek22-Jun-06 5:38 

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.