Пример #1
0
        public static bool EditStorageAccount(string sAccountName, Settings.SettingsElt[] rgsteeAccount)
        {
            AzAddAccount azaa = new AzAddAccount(rgsteeAccount);
            azaa.LoadSettings(sAccountName);
            azaa.ShowDialog();

            return true;
        }
Пример #2
0
        public static bool EditStorageAccount(string sAccountName, Settings.SettingsElt[] rgsteeAccount)
        {
            AzAddAccount azaa = new AzAddAccount(rgsteeAccount, "Software\\Thetasoft\\AzLog");

            azaa.LoadSettings(sAccountName);
            azaa.ShowDialog();

            return(true);
        }
Пример #3
0
        /* A D D  S T O R A G E  A C C O U N T */
        /*----------------------------------------------------------------------------
            %%Function: AddStorageAccount
            %%Qualified: AzLog.AzAddAccount.AddStorageAccount
            %%Contact: rlittle

        ----------------------------------------------------------------------------*/
        public static bool AddStorageAccount(Settings.SettingsElt[] rgsteeAccount)
        {
            AzAddAccount azaa = new AzAddAccount(rgsteeAccount);

            return azaa.ShowDialog() == System.Windows.Forms.DialogResult.OK;
        }
Пример #4
0
        /* A D D  S T O R A G E  A C C O U N T */

        /*----------------------------------------------------------------------------
        *       %%Function: AddStorageAccount
        *       %%Qualified: AzLog.AzAddAccount.AddStorageAccount
        *       %%Contact: rlittle
        *
        *  ----------------------------------------------------------------------------*/
        public static bool AddStorageAccount(Settings.SettingsElt[] rgsteeAccount)
        {
            AzAddAccount azaa = new AzAddAccount(rgsteeAccount, "Software\\Thetasoft\\AzLog");

            return(azaa.ShowDialog() == System.Windows.Forms.DialogResult.OK);
        }