This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Small program for converting old absolute paths in the Bilddatenbank of ARCHIV.MDB for pro.agzess.net to relative paths | |
// USE WITH CARE AND CREATE A BACKUP OF ARCHIV.MDB BEFORE RUNNING THIS PROGRAM | |
using System.Data.Odbc; | |
using (OdbcConnection conn = new OdbcConnection()) | |
{ | |
Console.WriteLine("Provide Path to ARCHIV.MDB."); | |
Console.Write("Name: "); |