BatchGuy.App.CreateEAC3ToBatchForm.IsScreenValidForRemux C# (CSharp) Method

IsScreenValidForRemux() private method

private IsScreenValidForRemux ( ) : bool
return bool
        private bool IsScreenValidForRemux()
        {
            if (IsMkvMergePathSetInSettings() != true)
            {
                MessageBox.Show("Please go to settings and set the mkvmerge.exe path", "Error occurred", MessageBoxButtons.OK, MessageBoxIcon.Error);
                return false;
            }

            if (_eac3toConfiguration.MKVMergeBatchFilePath == null || _eac3toConfiguration.MKVMergeBatchFilePath == string.Empty)
            {
                MessageBox.Show("Please choose an mkvmerge batch file!", "Error occurred", MessageBoxButtons.OK, MessageBoxIcon.Error);
                return false;
            }

            if (_eac3toConfiguration.MKVMergeOutputPath == null || _eac3toConfiguration.MKVMergeOutputPath == string.Empty)
            {
                MessageBox.Show("Please choose an mkvmerge output path!", "Error occurred", MessageBoxButtons.OK, MessageBoxIcon.Error);
                return false;
            }

            return true;
        }
CreateEAC3ToBatchForm