mirror of
https://github.com/reactos/RosTE.git
synced 2024-11-26 21:00:31 +00:00
4dfcde03bd
- highlight when the user is moving outside of the recommended mem settings - improve the error reporting messages svn path=/trunk/tools/RosTE/; revision=258
30 lines
722 B
C#
30 lines
722 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
|
|
namespace RosTEGUI
|
|
{
|
|
public partial class ErrorForm : Form
|
|
{
|
|
public ErrorForm(string message, string exception, string trace)
|
|
{
|
|
InitializeComponent();
|
|
|
|
errorText.Text = message + " : " + exception + "\n\t" + trace;
|
|
}
|
|
|
|
private void errorCloseBtn_Click(object sender, EventArgs e)
|
|
{
|
|
Close();
|
|
}
|
|
|
|
private void errorCopyBtn_Click(object sender, EventArgs e)
|
|
{
|
|
Clipboard.SetText(errorText.Text);
|
|
}
|
|
}
|
|
} |