Day 12
This is some of the code I am working on at work using c#. This is a small app used to verify a database structure. #CodingPhase #TheCodingWay #365CodingPhaseChallenge ********** using System; using System.IO; using System.Data.OleDb; using System.Windows.Forms; namespace VerChange { public partial class Form1 : Form { OpenFileDialog odb = new OpenFileDialog(); // private OleDbConnection connection = new OleDbConnection(); // This line sets up connecting to DB files public Form1() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs e) { lbl_DefDB2.Text = Properties.Settings.Default.DB_Default; // This line populates the Default DB...