Click here to Skip to main content
15,912,400 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
QuestionClick Once Deployment Problems Pin
harwanegg10-Jan-07 20:18
harwanegg10-Jan-07 20:18 
QuestionI am trying to convert the DSOFramer com component as .net framework assembly Pin
indian14310-Jan-07 19:51
indian14310-Jan-07 19:51 
QuestionMoving my C++/MFC project from VS 2003 to VS 2005 Pin
AlexEvans10-Jan-07 17:26
AlexEvans10-Jan-07 17:26 
AnswerRe: Moving my C++/MFC project from VS 2003 to VS 2005 Pin
Christian Graus10-Jan-07 18:59
protectorChristian Graus10-Jan-07 18:59 
QuestionSingleton Application Pin
PavanPareta10-Jan-07 17:16
PavanPareta10-Jan-07 17:16 
AnswerRe: Singleton Application Pin
Christian Graus10-Jan-07 18:56
protectorChristian Graus10-Jan-07 18:56 
GeneralRe: Singleton Application Pin
PavanPareta10-Jan-07 19:21
PavanPareta10-Jan-07 19:21 
GeneralRe: Singleton Application Pin
szukuro11-Jan-07 1:00
szukuro11-Jan-07 1:00 
The following code demonstrates the main concept:

class Singleton
{
 private bool instanceExists = false;
 
 private Singleton()
 {
 //Initialize the class
 }
 
 public Singleton CreateInstance()
 {
   if (!instanceExists)
   {
      instanceExists = true;
      return new Singleton();
   }
   else
      return null; //possibly insert some warning message, exception, etc.
 }
}


Singleton s1 = new Singleton(); //compiletime error, constructor is not public
Singleton s2 = Singleton.CreateInstance(); //success
Singelton s3 = Simgleton.CreateInstance(); //s3 will be null
GeneralRe: Singleton Application [modified] Pin
Jun Du11-Jan-07 14:34
Jun Du11-Jan-07 14:34 
QuestionCustom Design View with User Control Pin
LagoonMatt10-Jan-07 12:59
LagoonMatt10-Jan-07 12:59 
AnswerRe: Custom Design View with User Control Pin
Christian Graus10-Jan-07 18:59
protectorChristian Graus10-Jan-07 18:59 
GeneralRe: Custom Design View with User Control Pin
LagoonMatt12-Jan-07 14:01
LagoonMatt12-Jan-07 14:01 
AnswerRe: Custom Design View with User Control Pin
LagoonMatt12-Jan-07 15:14
LagoonMatt12-Jan-07 15:14 
QuestionVSS on .Net 2005 Pin
happyheartcs10-Jan-07 11:35
happyheartcs10-Jan-07 11:35 
AnswerRe: VSS on .Net 2005 Pin
Not Active10-Jan-07 12:41
mentorNot Active10-Jan-07 12:41 
QuestionCapture video from camera Pin
Yevgeny Efter10-Jan-07 9:31
Yevgeny Efter10-Jan-07 9:31 
Questionhow to develop an add-in component in .net for outlook Pin
srichandk9-Jan-07 23:33
srichandk9-Jan-07 23:33 
AnswerRe: how to develop an add-in component in .net for outlook Pin
Talal Sultan9-Jan-07 23:37
Talal Sultan9-Jan-07 23:37 
QuestionRe: how to develop an add-in component in .net for outlook Pin
srichandk9-Jan-07 23:51
srichandk9-Jan-07 23:51 
AnswerRe: how to develop an add-in component in .net for outlook Pin
Talal Sultan10-Jan-07 0:00
Talal Sultan10-Jan-07 0:00 
GeneralRe: how to develop an add-in component in .net for outlook Pin
srichandk10-Jan-07 0:17
srichandk10-Jan-07 0:17 
GeneralRe: how to develop an add-in component in .net for outlook Pin
srichandk9-Jan-07 23:55
srichandk9-Jan-07 23:55 
GeneralRe: how to develop an add-in component in .net for outlook Pin
Talal Sultan10-Jan-07 0:04
Talal Sultan10-Jan-07 0:04 
QuestionError reading key file DSO.snk - the system cannot find the file specified Pin
indian1439-Jan-07 23:24
indian1439-Jan-07 23:24 
AnswerRe: Error reading key file DSO.snk - the system cannot find the file specified Pin
Pete O'Hanlon9-Jan-07 23:54
mvePete O'Hanlon9-Jan-07 23:54 

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.