Create a requirements document and a Use Case Definition document and then design a Windows application
MOST POPULAR GAMES SOLD
Create a requirements document and a Use Case Definition document and then design a Windows application based on the case project shown in Figure 8-108.
I need the form code in Visual Basic
ANSWER:
Code:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication2
{
public partial class Form1: Form
{
public Form1()
{
InitializeComponent();
}
blank Form1_Load(object shipper, EventArgs e)
{
visible();
}
public void visible()
{
lblmsg.Visible = false;
lblmsg2.Visible = false;
lblmsg3.Visible = false;
lblmsg4.Visible = false;
}
Trending now
This is a popular solution!
Step by step
Solved in 3 steps