This repository has been archived on 2025-05-24. You can view files and clone it, but cannot push or open issues or pull requests.
Files
RomVault/ROMVault2/FrmHelpAbout.cs
Jim Westfall 891f53ef34 Standardize the case of file names and how they are referenced in
ROMVault2.csproj so its possible to compile on a case sensitive
filesystem (ie mono on linux)
2014-10-18 16:36:00 -07:00

41 lines
1.2 KiB
C#

/******************************************************
* ROMVault2 is written by Gordon J. *
* Contact gordon@romvault.com *
* Copyright 2014 *
******************************************************/
using System;
using System.Windows.Forms;
namespace ROMVault2
{
public partial class frmHelpAbout : Form
{
public frmHelpAbout()
{
InitializeComponent();
Text = "Version "+Program.Version+"." + Program.SubVersion + " : " + Application.StartupPath;
lblVersion.Text = "Version "+Program.Version+"." + Program.SubVersion;
}
private void label1_Click(object sender, EventArgs e)
{
string url = "http://www.romvault.com/";
System.Diagnostics.Process.Start(url);
}
private void label2_Click(object sender, EventArgs e)
{
try
{
string url = "mailto:support@romvault.com?subject=Support " + Program.Version + "." + Program.SubVersion;
System.Diagnostics.Process.Start(url);
}
catch
{ }
}
}
}