示例#1
0
        private void LoadCustomerLog(string fileName)
        {
            _currentDataTable = null;

            if (string.IsNullOrEmpty(fileName))
            {
                return;
            }

            _currentDataTable         = JobLogHelper.LoadLogFileToTable(JobLogHelper.GetJobLogCurrentFullPath(jobTimeSetting.CurrentJob));
            gridControlLog.DataSource = _currentDataTable;
        }