My application works great on all computers here that has Visual Studio installed, but it does not work on the machine that does not have Visual Studio.
The application just crashes on start up with this message in the Event Viewer:
Framework Version: v4.0.30319
Description: The process was terminated due to an unhandled exception.
Exception Info: System.TypeInitializationException
Stack:
at Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.DoApplicationModel()
at Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.Run(System.String[])
at IssueTrackingSystem.My.MyApplication.Main(System.String[])
I tested a simple application with just one button, same results.

UPDATE:

You need to get the exception’s InnerException to really know what is going wrong. Project + Properties, Application tab, click the View Application Events button. In the upper left combobox above the editor window select “(MyApplication Events)”, in the right combobox select “Startup”.
That adds the Startup event handler. Make it look similar to this:
You’ll now get a stack trace that includes the inner exception. That should be good enough to find the static constructor that bombs. Post the stack trace you see in your question if that doesn’t help.