| Author: Wax 07 Sep 2008 | Member Level: Silver | Rating: Points: 3 |
Applicaions having a dos like(or Command Prompt in windows)interface is called a console appliactions.
Applications having a GUI(Graphical User Interface) is called a window application. For example calculator in windows operating system.
|
| Author: Bunty 07 Sep 2008 | Member Level: Diamond | Rating: Points: 3 |
Hi,
Console application means having Disk operating(DOS) behavior.
Whereas windows application are used for GUI(Graphical user interface)
C,C++ are used for developing console application whereas Java,VB,.Net are used for developing GUI or windows application.
Regards S.S.Bajoria
Thanks & Regards S.S.Bajoria
|
| Author: Muralee Krishnan.K 07 Sep 2008 | Member Level: Gold | Rating: Points: 3 |
Console Application is run by the Dos Command Prompt. This type of application are known as Console Application. Application is run by typing the code for the particular program.
Windows Application is the application with GUI. User can easily done their work in windows application.
Muralee Krishnan.K
|
| Author: Appukuttan 08 Sep 2008 | Member Level: Diamond | Rating: Points: 3 |
Hi..
Console application supports Character User Interface(CUI) whereas Windows application supports Graphical User Interface(GUI)
for more: http://msdn.microsoft.com/en-us/library/bb251798.aspx
|
| Author: UltimateRengan 08 Sep 2008 | Member Level: Diamond | Rating: Points: 2 |
hi, http://forums.msdn.microsoft.com/en-US/csharpgeneral/thread/9eabc0a7-7738-4b71-a125-635d23f6f41a/ http://www.programmersheaven.com/2/FAQ-WinForm-How-Do-WinForm-Apps-Differ-To-Console-Apps i hope this may help u
UltimateRengan nathan.rengan@gmail.com Trichy-Rider Group
|
| Author: ramya 08 Sep 2008 | Member Level: Gold | Rating: Points: 2 |
console applications are command prompt application it shows the output in command prompt where as windows applications are dessktop applications and are graphical user interface
|
| Author: Ravi Kiran Nedunuri 30 Sep 2008 | Member Level: Gold | Rating: Points: -20 |
hi
Console application: A console application is a computer program designed to be used via a text-only computer interface, such as a text terminal, the command line interface of some operating systems (Unix, DOS, etc.) or the text-based interface included with some Graphical User Interface (GUI) operating systems, such as the Win32 console in Microsoft Windows. A user typically interacts with a console application using only a keyboard and display screen, as opposed to GUI applications, which normally require the use of a mouse or other pointing device. Many console applications such as command line interpreters are command line tools, but numerous Text User Interface (TUI) programs also exist. As the speed and ease-of-use of GUI applications have improved over time, the use of console applications has greatly diminished, but not disappeared. Some users simply prefer console based applications, while some organizations still rely on existing console applications to handle key data processing tasks.
Console based applications:
The following list contains a small selection console based applications:
Lynx — web browser irssi — irc client Mutt — e-mail client Midnight Commander — file manager Nano — text editor
Windows Forms:
Windows Forms is the name given to the graphical user interface application programming interface (API) included as a part of Microsoft's .NET Framework, providing access to the native Microsoft Windows interface elements by wrapping the existing Windows API in managed code. While it is seen as a replacement for the earlier and more complex C++ based Microsoft Foundation Class Library, it does not offer a paradigm comparable to model-view-controller.
The following is a simple C# program using Windows Forms.
using System; using System.Windows.Forms; public class HelloWorld { public static void Main() { MessageBox.Show("Hello world!"); } }
Regards N.RaviKiran
|
| Author: P.Thiruppathi 02 Oct 2008 | Member Level: Bronze | Rating: Points: 1 |
Hai Guys,
Your information is very fine.
Regards,
Thiruppathi
|