Post reply

The message has the following error or errors that must be corrected before continuing:
Warning: this topic has not been posted in for at least 120 days.
Unless you're sure you want to reply, please consider starting a new topic.
Note: this post will not display until it has been approved by a moderator.
Attachments: (Clear attachments)
Restrictions: 20 per post (20 remaining), maximum total size 24.00 MB, maximum individual size 24.00 MB
Uncheck the attachments you no longer want attached
Click or drag files here to attach them.
Other options
Verification:
Please leave this box empty:
Type the letters shown in the picture
Listen to the letters / Request another image

Type the letters shown in the picture:

Shortcuts: ALT+S post or ALT+P preview

Topic summary

Posted by sukishan
 - Jul 14, 2009, 04:44 PM
New Project Dialog Box (Visual J#)

The New Project dialog box contains a list of predefined Visual Studio project templates, which represent the types of projects you can create with Visual Studio. When you choose a Project Type, Visual Studio sets up the necessary compiler options, and adds basic assembly references to the project. All of the underlying code and resource files, such as icons, cursors, and so forth, are also generated so you can compile an empty stub project. Once generated, you can add your own implementations and compile from within the project.

Visual J# provides four predefined project types:


Windows Application
This project type is for creating Windows client applications. The project creates a Windows Form onto which you can drop other controls, and display text and graphics. For more information, How to: Create a Visual J# Windows Application.

Class Library
A class library project creates a library file that can be referenced from other applications.

Console Application
This project type is for creating command line utilities and applications. The output and input of the program occurs through a text-based terminal window. For more information, see How to: Create a Visual J# Console Application.