Added Print and Print All Procedures
Added DebugPagination and DebugText properties
This commit is contained in:
@@ -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
|
||||
{
|
||||
|
Reference in New Issue
Block a user