BatchGuy.App.CreateAviSynthFilesForm.IsScreenValidForFFMSIndex C# (CSharp) Méthode

IsScreenValidForFFMSIndex() private méthode

private IsScreenValidForFFMSIndex ( ) : bool
Résultat bool
        private bool IsScreenValidForFFMSIndex()
        {
            if ( txtFFMSIndexOutputDirectory.Text == string.Empty)
            {
                MessageBox.Show("Please enter a directory where the ffmsindex batch file should be created", "Directory Error.", MessageBoxButtons.OK, MessageBoxIcon.Error);
                return false;
            }
            return true;
        }