Develop an application that displays a blank chess board in
the form of 8x8 squares. The board should allow the user to click on any
square. Upon the click it should display the clicked position as the current
position of a knight piece and also display the positions that could be its
possible moves in reference to the current position.
C++ projects ,C# projects, programming lectures, programming exercises, Programming tutorials
Pages
▼
Pages
▼
Tuesday, 7 January 2014
How use RadioButton, ComboBox, CheckBox, ListBox & GroupBox in Visual c#.net
Develop an application with one screen that calculates the monthly
salary of an employee. Your application should satisfy the following
requirements:
1. Make
sure you use all of the following components:
Label, TextBox, RadioButton, ComboBox, CheckBox, ListBox, Button, GroupBox
Label, TextBox, RadioButton, ComboBox, CheckBox, ListBox, Button, GroupBox
2. Employee
Name: (TextBox)
3. Employee
Grade Level: (ComboBox)
Director, Manager, Project Manager, Programmer
Director, Manager, Project Manager, Programmer
4. Basic
Salary: (RadioButton)
30,000, 40,000, 50,000, 100,000
30,000, 40,000, 50,000, 100,000
Monday, 6 January 2014
How to apply Array in C#.net Example
Write a program that:Reads 10 numbers, one by one, using a for loop.Use switch-case statement to do following: If the number is
between 1 and 5, store it in one array, if the number is between 6 and 10,
store it in a second array, if the number is between 11 and 15 store it in a
third array. In all other cases display a message saying “The number is out of
range! Enter a number between 1 and 15”.
In the end, display the elements of each of the
three arrays with some type of heading