/// <summary>
        /// Confirm the working version against the latest one on the web
        /// </summary>
        /// <remarks>
        /// Displays a 'current version' image or another image to encourage an update.
        /// </remarks>
        private void MostrarVersion()
        {
            if (mLastVersion == null)
            {
                return;
            }

            string ver = typeof(FileHelperEngine).Assembly.GetName().Version.ToString(3);

            if (VersionData.CompararVersiones(ver, mLastVersion.Version) >= 0)
            {
                picCurrent.Visible = true;
            }
            else
            {
                picNewVersion.Visible = true;
                picNewVersion.Tag     = mLastVersion;
                tip.SetToolTip(picNewVersion, "Version: " + mLastVersion.Version + Environment.NewLine + mLastVersion.Description);
            }
        }