Beispiel #1
0
        internal static void ShowAlertProgramBox(Form form, String message)
        {
            String culture = LanguageUtil.GetReallyShortCulture(CultureInfo.CurrentCulture.Name);

            AlertO alertBox = new AlertO(form, message, culture);

            alertBox.ShowDialog(form);
        }
Beispiel #2
0
        internal static void ShowAlertBox(Form form, String alertMessage, String culture)
        {
            AlertO errorBox = new AlertO(form, alertMessage, culture);

            errorBox.ShowDialog(form);
        }
Beispiel #3
0
        internal static void ShowAlertProgramBox(Form form, String message, String culture)
        {
            AlertO alertBox = new AlertO(form, message, culture);

            alertBox.ShowDialog(form);
        }
Beispiel #4
0
        internal static void ShowAlertBox(Form form, String message)
        {
            AlertO alertBox = new AlertO(form, message);

            alertBox.ShowDialog(form);
        }