C#
Cannot import the following key file fix
This one has caused me a few hours of pain….a couple of time. It is about time I document how I fixed it.
The Error:
Cannot import the following key file: <filename>.pfx. The key file may be password protected. To correct this, try to import the certificate again or manually install the certificate to the Strong Name CSP with the following key container name: VS_KEY_ E2AEBF22AB52DD08 <Application Name>
The Fix:
- Open Visual Studio Command Prompt (It can be found in the Windows Start menu)
- Type sn -i “c:\Pathtofile\<filename>.pfx” TVS_KEY_ E2AEBF22AB52DD08
- Reimport the pfx file into Visual Studio
The sn.exe with the –i parameter, installs a key pair from <infile> into a key container named <container>.
Creating a Single Instance C# Application
This is something I find myself looking up alot so I decided to put it into a post for easy access, and for anyone else who might be looking for a solution.
using System.Threading;
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
bool createdNew = true;
using (Mutex mutex = new Mutex(true, "SignleInstance", out createdNew))
{
if (createdNew)
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}
}
Download Single Instance Application Source Code
I still don’t get why in Visual Studio in VB.NET one could click make single instance application, but that same feature doesn’t exist in C#? Don’t all .NET languages just get compiled to the CIL in the end?
C# .NET and LyricWiki to lookup lyrics
Music is everywhere with today’s high speed internet is most home it is no wonder that music is even moving to the World Wide Web. Many radio stations allow you to stream their stations over the internet. Many websites have been developed around music, like www.jango.com, www.pandora.com, and www.last.fm. I recently released my second version of Jango Desktop and one of the features I implemented was the ability to look up lyrics. Before I started I was thinking about all the ways I could parse the lyrics out of an existing lyric’s websites database. During my searching I stumbled upon http://lyricwiki.org/. Here is a small description of LyricWiki from the website:
LyricWiki is a free site which is a source where anyone can go to get reliable lyrics for any song, from any artist, without being hammered by invasive ads.
At this point you are probably thinking to yourself the same thing I did “Great, but where do I start?” So today I am writing a step by step tutorial on how to use Lyric wiki in your .NET program.
Creating a simple lyric demo program:

Step 1: Create the Form
Open visual studio and setup your form to look similar to mine.
Adding the web service:
Because LyricWiki offers a web service, you will want to add it to your program as a web reference. Right click on your solution and select add a web reference, or in .net 3.5 add a service reference -> then go to advance and add a web reference. The service’s URL is http://lyricwiki.org/server.php?wsdl you will want to add it like below if you press go you should see the available methods.

Adding a Web Reference
Writing the code:
Double click on your button on the form and let’s right some code to handle the lookup.
Add this to the top of your code:
using LyricsLookup.org.lyricwiki;
Then add this to the button clicked method:
private void LyricsButton_Click(object sender, EventArgs e)
{
LyricWiki wiki = new LyricWiki();
LyricsResult result;
string artist = artistTextBox.Text;
string song = SongTextBox.Text;
if(wiki.checkSongExists(artist,song))
{
result = wiki.getSong(artist, song);
Encoding iso8859 = Encoding.GetEncoding("ISO-8859-1");
LyricsRichTextBox.Text = Encoding.UTF8.GetString(iso8859.GetBytes(result.lyrics));
}else{
StatusLabel.Text = "Lyrics not found in database";
}
}
Then run and test.