Just one instance of my program

  • Thread starter Thread starter Schorschii
  • Start date Start date
S

Schorschii

Hi,

how can i prevent that my program is started several times?
(using the compactframework not the standard)

THX

Schorschii
 
Since the forms used in .NET CF applications are classes, you could use a
singleton design pattern to ensure only one instance of the main form.

--Neil
 
Back
Top