+44(0) 1234 567 890 info@domainname.com

Tuesday 7 January 2014

How work with Dynamic Link Libraries (DLLs) in Visual C# .net










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.
38 comments

How use DataGridView with NumericUpDown control in visual c#.net










1)      Develop an application that allows user to add or remove student information to/from Master list by fulfilling following requirements:

a.      Provide following four input fields for student information (Detail portion):
Student Name, Registration Id, Phone Number, Gender (use ComboBox).

1 comment

How use RadioButton, ComboBox, CheckBox, ListBox & GroupBox in Visual c#.net

visual c#.net tools
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


2.      Employee Name: (TextBox)


3.      Employee Grade Level: (ComboBox)
Director, Manager, Project Manager, Programmer


4.      Basic Salary: (RadioButton)
30,000, 40,000, 50,000, 100,000

2 comments

Monday 6 January 2014

How to apply Array in C#.net Example


task no


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
1 comment