ACAT.Extensions.Default.FunctionalAgents.LectureManager.LectureManagerMainForm.updateFileName C# (CSharp) Method

updateFileName() private method

Updates the status bar with the name of the file
private updateFileName ( String fileName ) : void
fileName String input file name
return void
        private void updateFileName(String fileName)
        {
            String name;
            try
            {
                name = Path.GetFileName(fileName);
            }
            catch
            {
                name = String.Empty;
            }

            Windows.SetText(lblChosenFile, name);
        }