Program ‘<path>\programa.exe’ does not have an entry point defined

Me encuentro desarrollando una aplicación para quemar CDs diseñada para Windows CE 4.2 (Visual Studio .Net 2003 – C#). Al tratar de compilar el programa para tener una primera vista del mismo se presentó el error “Program ‘<path>\programa.exe’ does not have an entry point defined”.


La solución es bastante sencilla, es necesario agregar las siguientes líneas de código:

static void Main()
  {
   Application.Run(new proyecto());
  }


 Donde “proyecto” es el nombre del formulario de windows inicial.

One thought on “Program ‘<path>\programa.exe’ does not have an entry point defined

  1. I am really impressed with your writing talents and also with the
    structure to your blog. Is this a paid topic
    or did you modify it your self? Anyway keep up the nice quality writing, it is uncommon to look a great weblog like this one
    these days..

Leave a Reply

Your email address will not be published. Required fields are marked *