Skip to content

Commit

Permalink
I found out today the YoUTube link has not been working, due to a cha…
Browse files Browse the repository at this point in the history
…nge in .NET Core.
  • Loading branch information
DataJuggler committed Oct 10, 2023
1 parent 5b5ed86 commit 7eef980
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
8 changes: 6 additions & 2 deletions DBCompare/MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
using DBCompare.Util;
using System.Linq;
using System.Runtime.Versioning;
using System.Diagnostics;

#endregion

Expand Down Expand Up @@ -544,8 +545,11 @@ private static string CreateDeleteProcIfExistsSQL(string procedureName)
/// </summary>
private void YouTubeButton_Click(object sender, EventArgs e)
{
// open to my website
System.Diagnostics.Process.Start(YouTubePath);
// launch to YouTube
ProcessStartInfo info = new ProcessStartInfo { FileName = YouTubePath, UseShellExecute = true };

// launch
System.Diagnostics.Process.Start(info);
}
#endregion

Expand Down
2 changes: 1 addition & 1 deletion DBCompare/MainForm.resx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing"">Blue</data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
Expand Down

0 comments on commit 7eef980

Please sign in to comment.