1
Answer

What are the steps involved in SDLC

tri_inn

tri_inn

10y
479
1
a standard software copy follow what are the steps before jump on to develop any application. suppose a company get contact to develop a accounting package or shopping cart. so tell me what are the process and steps involved from start the apps to finishing or hand over to client.

thanks
Answers (1)
0
Vulpes
NA 98.3k 1.5m 11y
Try this code:

private void Form1_KeyDown(object sender, KeyEventArgs e)
{
   pressed = true;
   label1.Text = "Key Pressed: " + e.KeyCode;
   timer1.Stop();
   timer1_Tick(timer1, EventArgs.Empty);
   timer1.Start();
}