private void Quit_Click(object sender, EventArgs e)
 {
     // no matter what i do i cant seem to force null the converter on exit.
     form.Close();
     form.Dispose();
     form = null;
     if (plugin.IsLoaded)
     {
         plugin.Unload();
     }
     plugin = null;
 }