in Application tab of project properties window and in startup objects combobox, I can NOT see my win forms in order to set one of them as startup object.
What’s wrong with it?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There is nothing wrong with it. You do not see your forms in the combo box because the startup object of your application has to be an object which contains a
static void Main()method. A Form does not usually contain such a method.