Esempio n. 1
0
        public static string GetHelpURL(HelpKeys cHelpKey)
        {
            string strURL;
            if (cHelpKey == HelpKeys.CTX_HelpIndex)
            {
                strURL = Properties.Resources.C_HelpURL + "?CMD=" + System.Convert.ToInt32(HelpCommands.HelpIndex);
            }
            else
            {
                strURL = Properties.Resources.C_HelpURL + "?CMD=" + System.Convert.ToInt32(HelpCommands.HelpTopics) + "&KEY=" + System.Convert.ToInt32(cHelpKey);
            }

//            return strURL;
            return "http://www.ktrv.ru/about/structure/735/740/?PHPSESSID=79f01fee0ec461573e56dac172b674a5";
        }        
Esempio n. 2
0
		public static void ShowHelp (HelpKeys cHelpKey)
		{
            string strURL = GetHelpURL(cHelpKey);
            Program.OpenURL(strURL);			
		}