Added Print and Print All Procedures

Added DebugPagination and DebugText properties
This commit is contained in:
Rich
2011-08-18 11:19:51 +00:00
parent a9882ad357
commit 3a408d7af5
3 changed files with 40 additions and 0 deletions

View File

@@ -16,6 +16,18 @@ namespace Volian.Base.Library
// <add key ="OperatingMode" value ="Debug"|"Demo"|"Production"/>
// For DataLoader, this is set via the Debug checkbox on the form.
private static bool WasLoaded = false;
private static bool _DebugPagination = false;
public static bool DebugPagination
{
get { return VlnSettings._DebugPagination; }
set { VlnSettings._DebugPagination = value; }
}
private static bool _DebugText = false;
public static bool DebugText
{
get { return VlnSettings._DebugText; }
set { VlnSettings._DebugText = value; }
}
private static bool _DebugMode = false;
public static bool DebugMode
{