CSLA Config cleanup
This commit is contained in:
@@ -1,41 +1,26 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Data;
|
||||
using System.Drawing;
|
||||
using System.Text;
|
||||
using System.Windows.Forms;
|
||||
|
||||
using VEPROMS.CSLA.Library;
|
||||
using Volian.Base.Library;
|
||||
using JR.Utils.GUI.Forms;
|
||||
using System.Threading;
|
||||
|
||||
namespace VEPROMS.CSLA.Library
|
||||
{
|
||||
public partial class frmRofstLoadStatus : Form
|
||||
{
|
||||
#region Fields
|
||||
#region Fields
|
||||
|
||||
#endregion
|
||||
#endregion
|
||||
|
||||
#region Properties
|
||||
#region Properties
|
||||
|
||||
public string Title
|
||||
{
|
||||
get { return lblTitle.Text; }
|
||||
}
|
||||
public string Title => lblTitle.Text;
|
||||
|
||||
public string DisplayText
|
||||
{
|
||||
get { return statusProgressBar.Text; }
|
||||
}
|
||||
public string DisplayText => statusProgressBar.Text;
|
||||
|
||||
#endregion
|
||||
#endregion
|
||||
|
||||
#region Constructor
|
||||
#region Constructor
|
||||
|
||||
public frmRofstLoadStatus()
|
||||
public frmRofstLoadStatus()
|
||||
{
|
||||
// B2022-107: Display Progress Bar Messages/Statuses when a new ROFST binary file is loaded into the database
|
||||
// Initialize Base Component
|
||||
@@ -64,14 +49,14 @@ namespace VEPROMS.CSLA.Library
|
||||
|
||||
lblTitle.Text = title;
|
||||
|
||||
this.Refresh();
|
||||
Refresh();
|
||||
Application.DoEvents();
|
||||
|
||||
// Check if Finalizing Status/Progress Bar
|
||||
if (curVal >= 100)
|
||||
{
|
||||
Thread.Sleep(3000);
|
||||
this.Close();
|
||||
Close();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user