property page fix

added some debug
This commit is contained in:
2009-09-22 13:57:51 +00:00
parent bb4825939e
commit 8103cc041f
4 changed files with 32 additions and 6 deletions

View File

@@ -658,6 +658,22 @@ namespace VEPROMS.CSLA.Library
OnPropertyChanged("Print_Pagination");
}
}
[Category("Print Settings")]
[DisplayName("PDFLocation")]
[RefreshProperties(RefreshProperties.All)]
[Description("PDF Location")]
public string Print_PDFLocation
{
get
{
return _Xp["PrintSettings", "PDFLocation"];
}
set
{
_Xp["PrintSettings", "PDFLocation"] = value; // save selected value
OnPropertyChanged("Print_PDFLocation");
}
}
#endregion
#region Unit // From PROC.INI
[Category("Unit")]