wat is an application and how to develop it

Recommended Answers

All 2 Replies

Hi get2afzal, welcome here!
An application is anything that lets a "microprocessor" and other hardware, do things.
This might be a traffic light control system, a game on a console etc.
Because such microprocessor systems only understand the meaning of 0 and 1 (on and off) it is hard for us humans to understand things happening, when you see millions of those zeros and ones. So we invented computer languages (you see a lot of them here on Daniweb)
You posted your mail on the C# forum, have you any interest in the language called C#?

Application may be any thing that is to be created. software is a application, that is a collection of program. consuider vlc player is an application for playing sounds.

HOW TO DEVELOP IT

i will tell about simple application developed using C#.

TOOLS REQIRED

1.visual studio 2005 or above.

SAMPLE APPLICATION

name::display time

STEP1:create a form

step2:select timer

Step3:Label box(to display time)

Step4: Double click the label and put the code


""label1.Text = "Today is: " + DateTime.Now.ToLongDateString() + " [ " + DateTime.Now.ToLongTimeString() + " ] ";""

THIS IS THE SMALL APPLICATION TO DISPLAY TIME

NB:remove""

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.