New Enhanced Document Properties

DB Command Line Parameter now supports server name and ItemIDs.
Added File extension parameter to Make Document
This commit is contained in:
Rich
2015-10-27 13:30:46 +00:00
parent 98afa51783
commit 03303d785c
3 changed files with 12 additions and 19 deletions

View File

@@ -157,7 +157,7 @@ namespace VEPROMS.CSLA.Library
}
private static string FixServer(string connectionString)
{
string serverName = Volian.Base.Library.VlnSettings.GetCommand("Server",null);
string serverName = Volian.Base.Library.VlnSettings.GetServer();
if (serverName != null && serverName != "")
{
System.Text.RegularExpressions.Match mServer = System.Text.RegularExpressions.Regex.Match(connectionString, ".*Data Source=([^;]*).*");