diff options
| author | Ian C <ianc@noddybox.co.uk> | 2005-05-16 00:31:10 +0000 | 
|---|---|---|
| committer | Ian C <ianc@noddybox.co.uk> | 2005-05-16 00:31:10 +0000 | 
| commit | 81ed3c21ad7624a383a721c9509f671bd6f5ac23 (patch) | |
| tree | c48b8ba96b7a5d1603726af01107fe58519bfc73 /Util.cs | |
| parent | 319948b096029194a0dc27d5319794433f487a7b (diff) | |
Added adjustements and drop shadow
Diffstat (limited to 'Util.cs')
| -rw-r--r-- | Util.cs | 11 | 
1 files changed, 3 insertions, 8 deletions
| @@ -31,26 +31,21 @@ namespace BitmapFontEd  	{
  		public static bool YesNo(string s)
  		{
 -			return MessageBox.Show(s,"Question",
 +			return MessageBox.Show(s,"Bitmap Font Editor",
  			                       MessageBoxButtons.YesNo,
  			                       MessageBoxIcon.Question)==DialogResult.Yes;
  		}
  		public static void Message(string s)
  		{
 -			MessageBox.Show(s,"Message",MessageBoxButtons.OK,MessageBoxIcon.Information);
 +			MessageBox.Show(s,"Bitmap Font Editor",MessageBoxButtons.OK,MessageBoxIcon.Information);
  		}
  		public static void Error(string s)
  		{
 -			MessageBox.Show(s,"ERROR",MessageBoxButtons.OK,MessageBoxIcon.Error);
 +			MessageBox.Show(s,"Bitmap Font Editor - ERROR",MessageBoxButtons.OK,MessageBoxIcon.Error);
  		}
 -		public static void Error(string file, string s)
 -		{
 -			MessageBox.Show(file+"\n\n"+s,"File Error",MessageBoxButtons.OK,MessageBoxIcon.Error);
 -		}
 -		
  		public static void About()
  		{
  			MessageBox.Show(m_about,"About Bitmap Font Editor",
 | 
