Example #1
0
        //
        // ABSTRACT	 : �v���t�@�C���ύX�{�^��
        //
        private void ModifyButton_Click(object sender, EventArgs e)
        {
            if (ProfileComboBox.Text.Equals(""))
                return;

            CmdLineProfileDlg dlg = new CmdLineProfileDlg();
            string dir = CmdLineEncoder.CmdLineEncoderPlugin.ProfilePath;

            dlg.LoadProfile( Path.ChangeExtension( Path.Combine( dir, ProfileComboBox.Text ), ".XML" ) );
            dlg.ShowDialog();

            UpdateProfileList();
        }
Example #2
0
        //
        // ABSTRACT	 : �V�K�v���t�@�C���{�^��
        //
        private void NewProfileButton_Click(object sender, EventArgs e)
        {
            CmdLineProfileDlg dlg = new CmdLineProfileDlg();

            dlg.ExecuteFilePathTextBox.Text		= "";
            dlg.ArgumentTextBox.Text			= "\"{0}\" \"{1}\"";
            dlg.ProfileNameTextBox.Text			= "�V�K�v���t�@�C��";
            dlg.ExtensionTextBox.Text			= "AVI";
            dlg.OutputTypeComboBox.SelectedIndex	= 3;

            dlg.ShowDialog();

            UpdateProfileList();
        }