diff --git a/PROMS/VEPROMS User Interface/VEPROMS_UI.csproj b/PROMS/VEPROMS User Interface/VEPROMS_UI.csproj
index d511f0be..01f603eb 100644
--- a/PROMS/VEPROMS User Interface/VEPROMS_UI.csproj
+++ b/PROMS/VEPROMS User Interface/VEPROMS_UI.csproj
@@ -105,8 +105,9 @@
False
-
- ..\..\..\..\3rdPartyLibraries\CSLA\Csla.dll
+
+ False
+ C:\Users\Chris.VLN\Downloads\csla-3-0-5\cslacs\Csla\bin\Debug\Csla.dll
False
diff --git a/PROMS/VEPROMS.CSLA.Library/VEPROMS.CSLA.Library.csproj b/PROMS/VEPROMS.CSLA.Library/VEPROMS.CSLA.Library.csproj
index 14ae24e0..15071caf 100644
--- a/PROMS/VEPROMS.CSLA.Library/VEPROMS.CSLA.Library.csproj
+++ b/PROMS/VEPROMS.CSLA.Library/VEPROMS.CSLA.Library.csproj
@@ -85,7 +85,7 @@
False
- ..\..\..\..\3rdPartyLibraries\CSLA\Csla.dll
+ C:\Users\Chris.VLN\Downloads\csla-3-0-5\cslacs\Csla\bin\Debug\Csla.dll
False
diff --git a/PROMS/VEPROMS.CSLA.Library/app.config b/PROMS/VEPROMS.CSLA.Library/app.config
new file mode 100644
index 00000000..4b2e0f1f
--- /dev/null
+++ b/PROMS/VEPROMS.CSLA.Library/app.config
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/PROMS/VEPROMS.CSLA.Library/packages.config b/PROMS/VEPROMS.CSLA.Library/packages.config
new file mode 100644
index 00000000..345cd9c8
--- /dev/null
+++ b/PROMS/VEPROMS.CSLA.Library/packages.config
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/PROMS/Volian.Controls.Library/Volian.Controls.Library.csproj b/PROMS/Volian.Controls.Library/Volian.Controls.Library.csproj
index 9c76fbf7..708f2197 100644
--- a/PROMS/Volian.Controls.Library/Volian.Controls.Library.csproj
+++ b/PROMS/Volian.Controls.Library/Volian.Controls.Library.csproj
@@ -95,7 +95,7 @@
False
- ..\..\..\..\3rdPartyLibraries\CSLA\Csla.dll
+ C:\Users\Chris.VLN\Downloads\csla-3-0-5\cslacs\Csla\bin\Debug\Csla.dll
False
diff --git a/PROMS/Volian.Print.Library/Volian.Print.Library.csproj b/PROMS/Volian.Print.Library/Volian.Print.Library.csproj
index 12ed5491..dddee375 100644
--- a/PROMS/Volian.Print.Library/Volian.Print.Library.csproj
+++ b/PROMS/Volian.Print.Library/Volian.Print.Library.csproj
@@ -70,7 +70,7 @@
False
- ..\..\..\..\3rdPartyLibraries\CSLA\Csla.dll
+ C:\Users\Chris.VLN\Downloads\csla-3-0-5\cslacs\Csla\bin\Debug\Csla.dll
..\FlexableMessageBox\bin\Debug\FlexableMessageBox.dll
diff --git a/PROMS/Volian.Print.Library/app.config b/PROMS/Volian.Print.Library/app.config
new file mode 100644
index 00000000..7be68eba
--- /dev/null
+++ b/PROMS/Volian.Print.Library/app.config
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/PROMS/Volian.Print.Library/vlnParagraph.cs b/PROMS/Volian.Print.Library/vlnParagraph.cs
index f00363f0..d056d8e7 100644
--- a/PROMS/Volian.Print.Library/vlnParagraph.cs
+++ b/PROMS/Volian.Print.Library/vlnParagraph.cs
@@ -1407,7 +1407,8 @@ namespace Volian.Print.Library
}
}
}
- StepConfig sc = new StepConfig(MyItemInfo as StepInfo);
+ StepInfo si = (StepInfo)MyItemInfo;
+ StepConfig sc = new StepConfig(si.MyContent.Config);
if (sc != null && sc.Step_ImageWidth != 0)
{
Width = sc.Step_ImageWidth;
@@ -4184,7 +4185,8 @@ namespace Volian.Print.Library
{
Width *= (h2 / h1);
}
- StepConfig sc = new StepConfig(MyItemInfo as StepInfo);
+ StepInfo si = (StepInfo)MyItemInfo;
+ StepConfig sc = new StepConfig(si.MyContent.Config);
if (sc != null && sc.Step_ImageWidth != 0)
{
Width = sc.Step_ImageWidth;