You are on page 1of 5

Starting out with Visual C# 2012

Full chapter download at: https://testbankbell.com/product/solution-manual-for-


starting-out-with-visual-c-2012-3-e-3rd-edition-0133129454/
A Comprehensive Solution Manual for Starting out with Visual C# 2012, 3/E By

Tony Gaddis, Haywood Community College

Chapter 1: Introduction to Computers and Programming

Chapter 2: Introduction to Visual C#

Chapter 3: Processing Data

Chapter 4: Making Decisions

Chapter 5: Loops, Files, and Random Numbers

Chapter 6: Modularizing Your Code with Methods

Chapter 7: Arrays and Lists

Chapter 8: More about Processing Data

Chapter 9: Classes and Multiform Projects


Chapter 10: Inheritance and Polymorphism

Chapter 11: Databases

Step 1 of 1

Program:

• Generally a program is said to be set of instructions, that computer follows those

instructions for doing certain task.

• A program is executed by the computer’s processor. The processor loads program

(set instructions) into the main memory and execute it for doing certain task.

For example, many application programs like Excel, Paint, and word doc and so on.

• Each program is loaded by processor into main memory and executes its

instructions for getting particular result, Excel for spread sheet and calculation

purpose, paint for drawing and word doc for word processing and so on.
Step 1 of 1

13302-2-1AW AID: 1094 | 10/10/2014

RID: 5898 | 08/11/2014

If the programmer wants to display a message in a message box window, the

programmer should use the MessageBox.Show method. MessageBox.Show is a

method provided by .NET Framework, that we can use in visual C# to display a

message box. The statement written by the programmer to execute the

MessageBox.Show is called as method call. The following statement displays a

message box.

MessageBox.Show(“Good afternoon”);

Once the statement is executed it will display Good afternoon message in Message

Box window

Step 1 of 1
13302-3-1CP AID: 1094 | 25/09/2014

• The Textbox control is a rectangular area that can be used for gather input text from

the user.

• If the programmer wants to create TextBox control in the form, first the

programmer must select the Textbox control in the Toolbox window, which is

under Common controls group, after that the programmer double click on that

control a Textbox control will be created on the form.

• When the application is running, the user can type the text into a TextBox control.

You might also like