RosTE/GUI/ErrorForm.cs
Ged Murphy 4dfcde03bd - add an populate harddrives and netcards to the DB
- highlight when the user is moving outside of the recommended mem settings
- improve the error reporting messages

svn path=/trunk/tools/RosTE/; revision=258
2007-06-27 15:59:51 +00:00

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);
}
}
}