Atually I'm developing a documents In-System and this is the document no. I face this problem when I convert the textbox order to be Right To Left
Thanks
modified on Thursday, May 1, 2008 8:12 AM
Getting the inner exceptions can help understand the problem sometimes. Could you post the inner exception messages? try { // ... do whatever .... } catch (Exception ex) { Console.WriteLine (ex.Message); Exception innerEx = ex.InnerException; while (innerEx != null) { Console.WriteLine (ex.Message); innerEx = innerEx.InnerException; } }