I'm looking for some good C# programer to help on BLIde. There's a GDI eating-resources bug that's driveing me absolutely crazy. If some wants to lend a hand, it will be more than welcome.
Thanks.
Thanks.
#region DISPOSE() /// <summary> /// </summary> /// <param name="disposing"></param> protected override void Dispose(bool disposing) { if (disposing) { if (components != null) components.Dispose(); } base.Dispose(disposing); } ~SyntaxBoxControl() { #if DEBUG try { Console.WriteLine("finalizing syntaxbox"); } catch { } #endif } #endregion //END DISPOSE
#region DISPOSE() /// <summary> /// </summary> /// <param name="disposing"></param> protected override void Dispose(bool disposing) { #if DEBUG try { Console.WriteLine("finalizing syntaxbox"); } catch { } #endif if (disposing) { if (components != null) components.Dispose(); } base.Dispose(disposing); } #endregion //END DISPOSE
#region DISPOSE() /// <summary> /// </summary> /// <param name="disposing"></param> protected override void Dispose(bool disposing) { if (disposing) { if (components != null) components.Dispose(); } base.Dispose(disposing); Console.WriteLine("finalizing syntaxbox"); }