Ejemplo n.º 1
0
        public static void CreateNew(string title, string message, string innerMessage = "", string function = "", string info = "", string sugfix = "")
        {
            ErrorBox b = new ErrorBox();

            b.Message = message;
            b.InnerMessage = innerMessage;
            b.StackTrace = "";
            b.Title = title;
            b.Function = function;
            b.Info = info;
            b.SuggestedFix = sugfix;
            b.Show();
        }
Ejemplo n.º 2
0
        public static void CreateNew(Exception ex, string title, string function = "", string info = "", string sugfix = "")
        {
            ErrorBox b = new ErrorBox();

            b.TheException = ex;
            b.Title = title;
            b.Function = function;
            b.Info = info;
            b.SuggestedFix = sugfix;
            b.Show();
        }