J
John Owens
/// <summary>
/// </summary>
bool printFlag;
[Browsable(true), Category("Misc")]
public bool Print
{
get { return this.printFlag; }
set { this.printFlag = value; }
}
I'm using this but when I try to change a value it fires a SEHException in
the main function.
Is there something else I have to do?
Thanks.
/// </summary>
bool printFlag;
[Browsable(true), Category("Misc")]
public bool Print
{
get { return this.printFlag; }
set { this.printFlag = value; }
}
I'm using this but when I try to change a value it fires a SEHException in
the main function.
Is there something else I have to do?
Thanks.