Villanueva 3
Villanueva 3
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsApp48
{
public partial class Form1 : Form
{
String ln;
String fn;
String mn;
public Form1()
{
InitializeComponent();
comboBox2.Items.Add("January");
comboBox2.Items.Add("February");
comboBox2.Items.Add("March");
comboBox2.Items.Add("April");
comboBox2.Items.Add("May");
comboBox2.Items.Add("June");
comboBox2.Items.Add("July");
comboBox2.Items.Add("August");
comboBox2.Items.Add("September");
comboBox2.Items.Add("October");
comboBox2.Items.Add("November");
comboBox2.Items.Add("December");
String ln = textBox1.Text;
String fn = textBox2.Text;
String mn = textBox3.Text;
string day = comboBox1.SelectedItem.ToString();
string month = comboBox2.SelectedItem.ToString();
string year = comboBox3.SelectedItem.ToString();
String program = comboBox4.SelectedItem.ToString();