This commit is contained in:
John Jenko 2008-10-03 14:11:23 +00:00
parent 40dcb9a2a3
commit f8e5ccbea8
2 changed files with 6 additions and 2 deletions

View File

@ -154,7 +154,7 @@ namespace DataLoader
this.tbVesamPath.Name = "tbVesamPath";
this.tbVesamPath.Size = new System.Drawing.Size(469, 22);
this.tbVesamPath.TabIndex = 66;
this.tbVesamPath.Text = "c:\\16bit\\ve-proms\\vesam.opt";
this.tbVesamPath.Text = @"C:\16bit\Ve-proms\vesam.opt";
//
// btnVesam
//

View File

@ -91,7 +91,11 @@ namespace DataLoader
tbSource.Text = @"G:\PROMSDAT\vehlp\procs";// South Texas EOPS
//tbSource.Text = @"G:\PromsDat\VEHP1B\SAMGS.PRC";// South Texas STPNOC
break;
default:
case "JOHN-VISTA":
tbSource.Text = @"C:\16bit\PROMSDAT\vehlp\procs";// South Texas EOPS
//tbSource.Text = @"G:\PromsDat\VEHP1B\SAMGS.PRC";// South Texas STPNOC
break;
default:
throw new Exception("Not configured for " + SystemInformation.ComputerName);
}
}