Posts

Showing posts from November, 2014

SRS of Cybernetics Protector

CYBERNETICS PROTECTOR Software Requirements Specification Table of Contents      Description                                                                                                                Page           1.0    Introduction 1.1    Purpose 1.2    Scope 1.3    Definition, Acronyms, and Abbreviations 1.4    References 1.5    Technologies to be used 1.6    Overview           2.0    Overall Description 2.1    Product Perspective 2.2    Software Interface 2.3 ...

Fruit Name Game Using Visual C#:

Image
1.   Open Visual Studio. 2.   Create New Windows Form Application. 3.   Double click the Form1 on solution Explorer. 4.   In the Design Mode of Form1 right click > Properties changes its Text Property To “ GuessFruitName”  from property window. 5.   You can set its backcoloralso. Here it is Coral. 6.   Now Drag 2 textBoxes, 1 label and  1 Button Control To the form1 from Toolbox. 7.   Change the text of label to “Number of Remaining Gusses” ,button control  to “Next Fruit Name”  and textBox1 to “******”.        Your Form Looks Like This:  8.   Double click on form1 write the following code:        public Form1()         {               InitializeComponent();             }        string [] fruitList = ne...

C# Application Moving An Image Using Arrow Keys of Keyboard

Image
To run this application you have Visual Studio installed on your laptop/PC and have basic knowledge about C# language. 1.        Create new project. 2.        Open Windows Form  Application. Name it MovingTheImage or something else you want.          3.        Double Click the form1 on Solution Explorer. 4.        Change the Background Color of the Form .         i.                      Select the form by single click on it.         ii.                    Right click  > Properies > BackColor > Black         iii.      ...