Subversion Repositories Code-Repo

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
34 Kevin 1
using System;
2
using System.Collections.Generic;
3
using System.ComponentModel;
4
using System.Data;
5
using System.Drawing;
6
using System.Linq;
7
using System.Text;
8
using System.Windows.Forms;
9
 
10
namespace DriveLogger
11
{
12
    public partial class LabelPrompt : Form
13
    {
14
        public string driveLabel = "";
15
        public LabelPrompt()
16
        {
17
            InitializeComponent();
18
        }
19
 
20
        private void btn_Prompt_Click(object sender, EventArgs e)
21
        {
22
            driveLabel = this.txt_Prompt.Text;
23
            this.Close();
24
        }
25
    }
26
}