diff --git a/TBF/Properties/AssemblyInfo.cs b/TBF/Properties/AssemblyInfo.cs index a6a17d4b8..a3f2ba4e2 100644 --- a/TBF/Properties/AssemblyInfo.cs +++ b/TBF/Properties/AssemblyInfo.cs @@ -29,5 +29,5 @@ using System.Runtime.InteropServices; // Build Number // Revision // -[assembly: AssemblyVersion("2.30.1966.0")] -[assembly: AssemblyFileVersion("2.30.1966.0")] +[assembly: AssemblyVersion("2.30.1971.0")] +[assembly: AssemblyFileVersion("2.30.1971.0")] diff --git a/TBF/Rig/DataEntry/StandardCamera/EntryForm.cs b/TBF/Rig/DataEntry/StandardCamera/EntryForm.cs index 241504e9e..331aec101 100644 --- a/TBF/Rig/DataEntry/StandardCamera/EntryForm.cs +++ b/TBF/Rig/DataEntry/StandardCamera/EntryForm.cs @@ -1,5 +1,5 @@ /// -/// Copyright (c) 2017 Sensus Metering Systems +/// Copyright (c) 2017-2022 Sensus Slovensko a.s. /// using System; using System.Collections.Generic; @@ -16,8 +16,24 @@ namespace TBF.Rig.DataEntry.StandardCamera private static readonly ILog log = LogManager.GetLogger(typeof(EntryForm)); public override string ToString() { return string.Format("{0}({1})", ClassName, Cfg.ToString(-1)); } + const string DfltOcrWorkspaceFolder = "C:\\TBF\\OCR\\"; + const string DfltOcrWorkspaceExt = ".vrws"; + + static Dictionary ocrDictionary = new Dictionary(); + readonly EntryFormCfg entryFormCfg; + + public string OcrWorkspace + { + get { return (entryFormCfg != null && entryFormCfg.ProcParams != null) ? entryFormCfg.ProcParams.OcrWorkspace : string.Empty; } + } + + public string OcrStream + { + get { return (entryFormCfg != null && entryFormCfg.ProcParams != null) ? entryFormCfg.ProcParams.OcrStream : string.Empty; } + } + IRegReader[] regReaders; @@ -28,26 +44,13 @@ namespace TBF.Rig.DataEntry.StandardCamera { if (entryFormCfg.DebugLevel == DebugMode.Simulate) { - startImages = new string[] { "C:\\TBF\\Images\\Test\\Image1.jpg", - "C:\\TBF\\Images\\Test\\Image2.jpg", - "C:\\TBF\\Images\\Test\\Image3.jpg", - "C:\\TBF\\Images\\Test\\Image4.jpg", - "C:\\TBF\\Images\\Test\\Image5.jpg", - "C:\\TBF\\Images\\Test\\Image1.jpg", - "C:\\TBF\\Images\\Test\\Image2.jpg", - "C:\\TBF\\Images\\Test\\Image3.jpg", - "C:\\TBF\\Images\\Test\\Image4.jpg", - "C:\\TBF\\Images\\Test\\Image5.jpg", - "C:\\TBF\\Images\\Test\\Image1.jpg", - "C:\\TBF\\Images\\Test\\Image2.jpg", - "C:\\TBF\\Images\\Test\\Image3.jpg", - "C:\\TBF\\Images\\Test\\Image4.jpg", - "C:\\TBF\\Images\\Test\\Image5.jpg", - "C:\\TBF\\Images\\Test\\Image1.jpg", - "C:\\TBF\\Images\\Test\\Image2.jpg", - "C:\\TBF\\Images\\Test\\Image3.jpg", - "C:\\TBF\\Images\\Test\\Image4.jpg", - "C:\\TBF\\Images\\Test\\Image5.jpg" }; + startImages = new string[] { "C:\\TBF\\Images\\Test\\Image1.jpg", "C:\\TBF\\Images\\Test\\Image2.jpg", + "C:\\TBF\\Images\\Test\\Image3.jpg", "C:\\TBF\\Images\\Test\\Image4.jpg", "C:\\TBF\\Images\\Test\\Image5.jpg", + "C:\\TBF\\Images\\Test\\Image1.jpg", "C:\\TBF\\Images\\Test\\Image2.jpg", "C:\\TBF\\Images\\Test\\Image3.jpg", + "C:\\TBF\\Images\\Test\\Image4.jpg", "C:\\TBF\\Images\\Test\\Image5.jpg", "C:\\TBF\\Images\\Test\\Image1.jpg", + "C:\\TBF\\Images\\Test\\Image2.jpg", "C:\\TBF\\Images\\Test\\Image3.jpg", "C:\\TBF\\Images\\Test\\Image4.jpg", + "C:\\TBF\\Images\\Test\\Image5.jpg", "C:\\TBF\\Images\\Test\\Image1.jpg", "C:\\TBF\\Images\\Test\\Image2.jpg", + "C:\\TBF\\Images\\Test\\Image3.jpg", "C:\\TBF\\Images\\Test\\Image4.jpg", "C:\\TBF\\Images\\Test\\Image5.jpg" }; } else { @@ -110,7 +113,6 @@ namespace TBF.Rig.DataEntry.StandardCamera CurrentOp currentOp; - public EntryForm() { } public EntryForm(Generic.IComponentCfg cfg) @@ -213,21 +215,75 @@ namespace TBF.Rig.DataEntry.StandardCamera /// void OpenTestStartStatesDlg(EntryForm myRef) { - myRef.modelessDlg = new TestStartEndForm(TBF.Data.WMsCount, myRef.regReaders, startImages, disabled); + string ocrMessage; + var ocr = GetOcr(myRef.OcrWorkspace, out ocrMessage); + myRef.modelessDlg = new TestStartEndForm(TBF.Data.WMsCount, myRef.regReaders, ocr, ocrMessage, myRef.OcrStream, + startImages, disabled); modelessDlg.Show(); } /// void OpenTestEndStatesDlg(EntryForm myRef) { - myRef.modelessDlg = new TestStartEndForm(TBF.Data.WMsCount, myRef.regReaders, endImages, wmStartState, wmStartStateStr, disabled, refVolume, errLimLo, errLimHi); + string ocrMessage; + var ocr = GetOcr(myRef.OcrWorkspace, out ocrMessage); + myRef.modelessDlg = new TestStartEndForm(TBF.Data.WMsCount, myRef.regReaders, ocr, ocrMessage, myRef.OcrStream, + startImages, wmStartState, wmStartStateStr, endImages, disabled, + refVolume, errLimLo, errLimHi); modelessDlg.Show(); } /// void OpenDeferredTestEvalDlg(EntryForm myRef) { - myRef.modelessDlg = new TestStartEndForm(TBF.Data.WMsCount, myRef.regReaders, startImages, endImages, disabled, refVolume, errLimLo, errLimHi); + string ocrMessage; + var ocr = GetOcr(myRef.OcrWorkspace, out ocrMessage); + myRef.modelessDlg = new TestStartEndForm(TBF.Data.WMsCount, myRef.regReaders, ocr, ocrMessage, myRef.OcrStream, + startImages, endImages, disabled, + refVolume, errLimLo, errLimHi); modelessDlg.Show(); } + /// + OcrVidi GetOcr(string ocrWorkspace, out string message) + { + message = string.Empty; + if (string.IsNullOrEmpty(ocrWorkspace)) return null; /// No OCR was configured + + string fullPath = (ocrWorkspace.Contains("\\") || ocrWorkspace.Contains("/")) + ? ocrWorkspace.Replace('/', '\\') + : System.IO.Path.Combine(DfltOcrWorkspaceFolder, ocrWorkspace); + if (!fullPath.Contains(".")) fullPath = fullPath + DfltOcrWorkspaceExt; + + OcrVidi ocrVidi; + if (ocrDictionary.TryGetValue(fullPath, out ocrVidi)) + { + log.InfoFormat("existing OcrVidi({0}) was retrieved from dictionary", fullPath); + return ocrVidi; + } + + try + { + ocrVidi = new OcrVidi(fullPath); + ocrDictionary.Add(fullPath, ocrVidi); + log.WarnFormat("new OcrVidi({0}) was added to dictionary", fullPath); + return ocrVidi; + } + catch (Exception e) + { + if (e.InnerException != null) + { + log.ErrorFormat("new OcrVidi({0}) thrown {1}: {2} / {3}", + fullPath, e.GetType().ToString(), e.Message,e.InnerException.Message); + } + else + { + log.ErrorFormat("new OcrVidi({0}) thrown {1}: {2}", + fullPath, e.GetType().ToString(), e.Message); + } + log.ErrorFormat("Stack trace:\r\n{0}", e.StackTrace); + + message = string.Format("Cannot load OCR workspace:\r\n{0}\r\nOCR workspace file is {1}", e.Message, fullPath); + return null; + } + } /// Start this operation public void Start() @@ -349,7 +405,9 @@ namespace TBF.Rig.DataEntry.StandardCamera { for (int i = 0; i < dlg.WaterMetersCount; i++) { - wmEndState[i] = dlg.WMEndState[i]; + wmStartState[i] = dlg.WMStartState[i]; + wmStartStateStr[i] = dlg.WMStartStateStr[i]; + wmEndState[i] = dlg.WMEndState[i]; } } } diff --git a/TBF/Rig/DataEntry/StandardCamera/EntryFormCfg.cs b/TBF/Rig/DataEntry/StandardCamera/EntryFormCfg.cs index 259840408..51784bba0 100644 --- a/TBF/Rig/DataEntry/StandardCamera/EntryFormCfg.cs +++ b/TBF/Rig/DataEntry/StandardCamera/EntryFormCfg.cs @@ -1,9 +1,10 @@ /// -/// Copyright (c) 2017 Sensus Metering Systems +/// Copyright (c) 2017-2022 Sensus Slovensko a.s. /// using System; using System.Collections.Generic; using System.Xml.Serialization; +using Common; using TBF.Rig.Generic; namespace TBF.Rig.DataEntry.StandardCamera @@ -27,9 +28,18 @@ namespace TBF.Rig.DataEntry.StandardCamera public string ProtocolTitle3; public string ProtocolTitle4; + + /// Procedure parameters + [XmlIgnore] + public ProcParams ProcParams; + public override IParamsProvider GetRuntimeProcParamsProvider() { return ProcParams; } + public override IParamsProvider CreateProcParamsProvider() { return new ProcParams(true); } + /// Private parameterless constructor invoked by all other (public) constructors EntryFormCfg() { + ProcParams = new ProcParams(true); + Name = "DataEntry-for-Camera"; ParentName = string.Empty; HideOrder = false; diff --git a/TBF/Rig/DataEntry/StandardCamera/OcrVidi.cs b/TBF/Rig/DataEntry/StandardCamera/OcrVidi.cs new file mode 100644 index 000000000..63f5d336c --- /dev/null +++ b/TBF/Rig/DataEntry/StandardCamera/OcrVidi.cs @@ -0,0 +1,97 @@ +using System.Collections.Generic; +#if OCR +using ViDi2; +#endif + +namespace TBF.Rig.DataEntry.StandardCamera +{ + public class OcrVidi + { +#if OCR + /// Static variable: OCR ViDi control can only have one instance + static ViDi2.Runtime.IControl control; + readonly IWorkspace workspace; +#endif + readonly string ocrWorkspaceFile; + + /// + /// Create OcrVidi wrapper class + /// + /// Cognex runtime workspace file (vrws) + public OcrVidi(string ocrWorkspaceFile) + { + this.ocrWorkspaceFile = ocrWorkspaceFile; +#if OCR + if (control == null) + { + /// Create and initialize the main control + control = new ViDi2.Runtime.Local.Control(GpuMode.NoSupport); + control.InitializeComputeDevices(GpuMode.NoSupport, new List() { }); /// Initializes all CUDA devices + } + + /// Open a runtime workspace from file + workspace = control.Workspaces.Add(string.Format("ws{0}", control.Workspaces.Count + 1), ocrWorkspaceFile); +#endif + } + + public string Recognize(string streamName, string imagePath, double denominator = 1000, string format = "F3") + { +#if OCR + IStream stream; + try { stream = workspace.Streams[streamName]; } + catch (Exception) { return string.Empty; } + if (stream == null) return string.Empty; + + string findedText = string.Empty; /// Hladane cislo - stav vodomera - string + double findedValue = 0; /// Hladane cislo - stav vodomera + bool finded = false; /// Ci sme nasli hodnotu + + // load an image from file + using (IImage image = new ViDi2.Local.LibraryImage(imagePath)) //disposing the image when we do not need it anymore + { + // allocates a sample with the image + using (ISample sample = stream.CreateSample(image)) + { + ITool tool = stream.Tools["Read"]; + + // process image with the blue read tool + sample.Process(tool); + + IBlueMarking blueReadMarking = sample.Markings[tool.Name] as IBlueMarking; + + foreach (IBlueView view in blueReadMarking.Views) + { + foreach (IMatch match in view.Matches) + { + //System.Console.WriteLine($"This model says \" {(match as IReadModelMatch).FeatureString} \" with a score of {match.Score}"); + string word = (match as IReadModelMatch).FeatureString; + if (word.Length >= 7 && word.Length <= 8 // hladane cislo ma od 7 do 8 znakov + && double.TryParse(word,out findedValue)) // a ak najdeny text je cislo + { + findedValue /= denominator; // Convert to m3, red digits are fractions of m3 + finded = true; + break; + } + } + if (finded) break; + } + } + } + + if (finded) + { + findedText = findedValue.ToString(format); + } + + return findedText; +#else + return null; +#endif + } + + public override string ToString() + { + return ocrWorkspaceFile; + } + } +} diff --git a/TBF/Rig/DataEntry/StandardCamera/ProcParams.cs b/TBF/Rig/DataEntry/StandardCamera/ProcParams.cs new file mode 100644 index 000000000..d4c891e95 --- /dev/null +++ b/TBF/Rig/DataEntry/StandardCamera/ProcParams.cs @@ -0,0 +1,132 @@ +/// +/// Copyright (c) 2022 Sensus Slovensko a.s. +/// +using System.IO; +using System.Xml.Serialization; +using Common; +using Config.Entities; +using TBF.Rig.Generic; + +namespace TBF.Rig.DataEntry.StandardCamera +{ + public class ProcParams : ProcedureParamsBase, IParamsProvider, IProcedureParams + { + public static XmlSerializer Serializer = XmlSerializer.FromTypes(new[] { typeof(ProcParams) })[0]; + public override XmlSerializer GetSerializer() { return Serializer; } + + public string OcrWorkspace; /// Path to a Cognex workspace file + public string OcrStream; /// Cognex workspace stream name + + + public override void InitializeAll() + { + OcrWorkspace = string.Empty; + OcrStream = "default"; + } + + string[] paramNames = new string[] + { + "OCR workspace file", + "OCR stream", + }; + public override string ParamName(int i) { return paramNames[i]; } + public override int ParamsCount() { return paramNames.Length; } + + public override string ToString(int i) + { + switch (i) + { + case 0: return OcrWorkspace; + case 1: return OcrStream; + default: return string.Empty; + } + } + + public CfgUpdateFlags UpdateParam(int i, string str) + { + switch (i) + { + case 0: OcrWorkspace = str; return CfgUpdateFlags.None; + case 1: OcrStream = str; return CfgUpdateFlags.None; + default: return CfgUpdateFlags.None; + } + } + + /// + /// Verifiy the string representation of the parameter + /// + /// Parameter ID + /// String representation of the parameter + /// In case false is returned this is the error messsage to be displayed + /// true = parameter OK, false = parameter NOK + public bool ValidateParam(int i, string str, out string message) + { + message = string.Empty; + + switch (i) + { + case 0: + return true; + case 1: + if (!string.IsNullOrEmpty(str)) return true; + break; + default: + message = "Invalid index"; + return false; + } + + message = ParamName(i) + " is invalid"; + return false; + } + + void CopyContentTo(ProcParams prms) + { + prms.OcrWorkspace = OcrWorkspace; + prms.OcrStream = OcrStream; + } + + public IParamsProvider Clone() + { + ProcParams pars = new ProcParams(); + CopyContentTo(pars); + return pars; + } + + public override void UpdateFromDbEntity(ComponentProcedure dbEntity) + { + if (dbEntity == null) return; + try + { + ProcParams tmp = Serializer.Deserialize(new StringReader(dbEntity.Parameters)) as ProcParams; + + procedureParamsEntity = dbEntity; + componentName = dbEntity.CmpntName; + procedure = dbEntity.Procedure; + + if (tmp != null) tmp.CopyContentTo(this); + } + catch + { + } + } + + /// + /// Parameterless constructor initializes the parameters + /// + public ProcParams() + { + } + + public ProcParams(bool initialize) + { + if (initialize) InitializeAll(); + } + + public ProcParams(ComponentProcedure procParamsEntity, string componentName, Procedure procedure) + { + this.procedureParamsEntity = procParamsEntity; + this.componentName = componentName; + this.procedure = procedure; + } + } +} diff --git a/TBF/Rig/DataEntry/StandardCamera/TestStartEndForm.cs b/TBF/Rig/DataEntry/StandardCamera/TestStartEndForm.cs index aba38769f..c54b3d4e2 100644 --- a/TBF/Rig/DataEntry/StandardCamera/TestStartEndForm.cs +++ b/TBF/Rig/DataEntry/StandardCamera/TestStartEndForm.cs @@ -1,14 +1,16 @@ /// -/// Copyright (c) 2017 Sensus Metering Systems +/// Copyright (c) 2017-2022 Sensus Slovensko a.s. /// using System; using System.Collections.Generic; using System.Drawing; +using System.IO; +using System.Threading; using System.Windows.Forms; using log4net; +using Common; using TBF.Rig.GenericDevices; using TBF.Resources; -using System.IO; namespace TBF.Rig.DataEntry.StandardCamera { @@ -33,22 +35,30 @@ namespace TBF.Rig.DataEntry.StandardCamera { private static readonly ILog log = LogManager.GetLogger(typeof(TestStartEndForm)); - // Set to 'true' when the form closes + const Unit unit = Unit.m3; + + // Set to 'true' when the form closes public bool Completed { get { return completed; } } bool completed; /// Number of text boxes for serial numbers - readonly Tst mode; /// Start, End or Deferred + readonly Tst mode; /// Start, End or Deferred public readonly int WaterMetersCount; readonly IRegReader[] regReaders; readonly bool[] disabled; readonly string[] startImages; readonly string[] endImages; readonly double refVolume; - readonly double warningLimLo; /// limit to display exclamation mark, typically 2x errLimLo - readonly double warningLimHi; /// limit to display exclamation mark, typically 2x errLimHi + readonly double warningLimLo; /// limit to display exclamation mark, typically 2x errLimLo + readonly double warningLimHi; /// limit to display exclamation mark, typically 2x errLimHi + readonly OcrVidi ocrVidi; + readonly string ocrMessage; + readonly string streamName; - // To be retrieved after the form closes + double denominator; /// derived from PulsesPerLtr, passed to OcrVidi + string format; /// derived from PulsesPerLtr, passed to OcrVidi + + // To be retrieved after the form closes public double[] WMStartState; // To be retrieved after the form closes @@ -57,23 +67,26 @@ namespace TBF.Rig.DataEntry.StandardCamera // To be retrieved after the form closes public double[] WMEndState; - const int TextBoxesCount = 24; - string lastImageName; - Bitmap lastImage; /// non-zoomed image + int lastWmNr1; + Bitmap lastImage; /// non-zoomed image Bitmap zoomedImage; + Thread imageProcessingThread; /// Thread to process images + public delegate void OcrTextObtainedDelegate(int ix, bool isEnd, string text); + OcrTextObtainedDelegate ocrTextObtained; + static int wmNr0b; - static Rotation[] imageRotation; + static Rotation imageRotation; static bool[] isZoomed; static Point[] zoomCenterLoc; /// static TestStartEndForm() { wmNr0b = 0; - imageRotation = new Rotation[TextBoxesCount]; + //imageRotation = new Rotation[TextBoxesCount]; isZoomed = new bool[TextBoxesCount]; zoomCenterLoc = new Point[TextBoxesCount]; } @@ -127,6 +140,8 @@ namespace TBF.Rig.DataEntry.StandardCamera enabledTextBoxes = new List(); + imageProcessingThread = null; + completed = false; StartForceCloseHandler(); } @@ -135,115 +150,141 @@ namespace TBF.Rig.DataEntry.StandardCamera /// Constructor to fill in start states /// /// Number of water meters - /// Information from CycleBeginningForm about availability of water meters - public TestStartEndForm(int waterMetersCount, IRegReader[] regReaders, string[] startImages, bool[] disabled) + /// Array with register reader components + /// Cognex wrapper object performing OCR or null + /// Array with paths to start images + /// Information from CycleBeginningForm about availability of water meters + public TestStartEndForm(int waterMetersCount, IRegReader[] regReaders, OcrVidi ocrVidi, string ocrMessage, string streamName, + string[] startImages, bool[] disabled) : this() { mode = Tst.Start; - this.regReaders = regReaders; - this.WaterMetersCount = Math.Min(waterMetersCount, regReaders.Length); - + this.regReaders = regReaders; + this.WaterMetersCount = Math.Min(waterMetersCount, regReaders.Length); + this.ocrVidi = ocrVidi; + this.ocrMessage = ocrMessage; + this.streamName = streamName; this.startImages = startImages; this.disabled = disabled; - if (startImages == null || startImages.Length != waterMetersCount) + if (startImages == null || startImages.Length != WaterMetersCount) { - throw (new Exception("Invalid 'startImages' argument")); + throw new Exception("Invalid 'startImages' argument"); } - this.endImages = new string[waterMetersCount]; + this.endImages = new string[WaterMetersCount]; + WMStartState = new double[WaterMetersCount]; + WMStartStateStr = new string[WaterMetersCount]; - /// For large benches with WaterMetersCount LE 6 is TBF.Data.LineSize==1 (compound meters) - int lineSize = (WaterMetersCount <= 6) ? WaterMetersCount : TBF.Data.LineSize; - - DeterminePhysPosWMPos(TextBoxesCount, WaterMetersCount, lineSize, out phys2wm, out wm2phys); - - Height = 555 + 30 * WaterMetersCount; - - WMStartState = new double[waterMetersCount]; - WMStartStateStr = new string[waterMetersCount]; - } + ConstructorCommon(regReaders); + } /// /// Constructor to fill in end states /// /// Number of water meters - /// Information entered on test start + /// Array with register reader components + /// Cognex wrapper object performing OCR or null + /// Array with paths to end images + /// Array with start states in default volume units (liters) + /// Information entered on test start /// Information from CycleBeginningForm about availability of water meters /// Reference volume, it is used to verify the end state, show/hide exclamation if necessary /// Error limit low, it is used to verify the end state, show/hide exclamation if necessary /// Error limit high, it is used to verify the end state, show/hide exclamation if necessary - public TestStartEndForm(int waterMetersCount, IRegReader[] regReaders, string[] endImages, double[] wmStartState, string[] wmStartStateStr, bool[] disabled, - double refVolume, double errLimLo, double errLimHi) + public TestStartEndForm(int waterMetersCount, IRegReader[] regReaders, OcrVidi ocrVidi, string ocrMessage, string streamName, + string[] startImages, double[] wmStartState, string[] wmStartStateStr, string[] endImages, + bool[] disabled, double refVolume, double errLimLo, double errLimHi) : this() { mode = Tst.End; this.regReaders = regReaders; this.WaterMetersCount = Math.Min(waterMetersCount, regReaders.Length); - - if (endImages == null || endImages.Length != waterMetersCount || - wmStartState == null || wmStartState.Length != waterMetersCount || - wmStartStateStr == null || wmStartStateStr.Length != waterMetersCount) - { - throw (new Exception("Invalid argument(s)")); - } - - this.endImages = endImages; - this.WMStartState = wmStartState; - this.WMStartStateStr = wmStartStateStr; - this.disabled = disabled; + this.ocrVidi = ocrVidi; + this.ocrMessage = ocrMessage; + this.streamName = streamName; + this.startImages = startImages; + this.WMStartState = wmStartState; + this.WMStartStateStr = wmStartStateStr; + this.endImages = endImages; + this.disabled = disabled; this.refVolume = refVolume; this.warningLimLo = 2 * errLimLo; this.warningLimHi = 2 * errLimHi; - this.startImages = new string[waterMetersCount]; + if (startImages == null || startImages.Length != WaterMetersCount || + wmStartState == null || wmStartState.Length != WaterMetersCount || + wmStartStateStr == null || wmStartStateStr.Length != WaterMetersCount || + endImages == null || endImages.Length != WaterMetersCount) + { + throw new Exception("Invalid argument(s)"); + } - /// For large benches with WaterMetersCount LE 6 is TBF.Data.LineSize==1 (compound meters) - int lineSize = (WaterMetersCount <= 6) ? WaterMetersCount : TBF.Data.LineSize; + WMEndState = new double[WaterMetersCount]; - DeterminePhysPosWMPos(TextBoxesCount, WaterMetersCount, lineSize, out phys2wm, out wm2phys); + ConstructorCommon(regReaders); + } - Height = 555 + 30 * WaterMetersCount; - - WMEndState = new double[waterMetersCount]; - } - - public TestStartEndForm(int waterMetersCount, IRegReader[] regReaders, string[] startImages, string[] endImages, - bool[] disabled, double refVolume, double errLimLo, double errLimHi) + /// + /// Constructor for deferred evaluation, to fill in both start- and end-states + /// + /// Number of water meters + /// Array with register reader components + /// Cognex wrapper object performing OCR or null + /// Array with paths to start images + /// Array with paths to end images + /// Information from CycleBeginningForm about availability of water meters + /// Reference volume, it is used to verify the end state, show/hide exclamation if necessary + /// Error limit low, it is used to verify the end state, show/hide exclamation if necessary + /// Error limit high, it is used to verify the end state, show/hide exclamation if necessary + public TestStartEndForm(int waterMetersCount, IRegReader[] regReaders, OcrVidi ocrVidi, string ocrMessage, string streamName, + string[] startImages, string[] endImages, bool[] disabled, + double refVolume, double errLimLo, double errLimHi) : this() { mode = Tst.Both; this.regReaders = regReaders; this.WaterMetersCount = Math.Min(waterMetersCount, regReaders.Length); + this.ocrVidi = ocrVidi; + this.ocrMessage = ocrMessage; + this.streamName = streamName; + this.startImages = startImages; + this.endImages = endImages; + this.disabled = disabled; + this.refVolume = refVolume; + this.warningLimLo = 2 * errLimLo; + this.warningLimHi = 2 * errLimHi; if (startImages == null || startImages.Length != waterMetersCount || endImages == null || endImages.Length != waterMetersCount) { - throw (new Exception("Invalid argument(s)")); + throw new Exception("Invalid argument(s)"); } - this.startImages = startImages; - this.endImages = endImages; - this.disabled = disabled; - this.refVolume = refVolume; - this.warningLimLo = 2 * errLimLo; - this.warningLimHi = 2 * errLimHi; + WMStartState = new double[waterMetersCount]; + WMStartStateStr = new string[waterMetersCount]; + WMEndState = new double[waterMetersCount]; - /// For large benches with WaterMetersCount LE 6 is TBF.Data.LineSize==1 (compound meters) - int lineSize = (WaterMetersCount <= 6) ? WaterMetersCount : TBF.Data.LineSize; - - DeterminePhysPosWMPos(TextBoxesCount, WaterMetersCount, lineSize, out phys2wm, out wm2phys); - - Height = 555 + 30 * WaterMetersCount; - - WMStartState = new double[waterMetersCount]; - WMStartStateStr = new string[waterMetersCount]; - WMEndState = new double[waterMetersCount]; + ConstructorCommon(regReaders); } + void ConstructorCommon(IRegReader[] regReaders) + { + /// For large benches with WaterMetersCount LE 6 is TBF.Data.LineSize==1 (compound meters) + int lineSize = (WaterMetersCount <= 6) ? WaterMetersCount : TBF.Data.LineSize; + + DeterminePhysPosWMPos(TextBoxesCount, WaterMetersCount, lineSize, out phys2wm, out wm2phys); + + int nrLines = (TBF.Data.WMsCount - 1) / TBF.Data.LineSize + 1; + if (nrLines == 1) + { + Width = 1040; + } + } + /// /// Make sure the layout of labels/text boxes on the screen /// corresponds to the layout of watermeters of the test bench. @@ -292,7 +333,7 @@ namespace TBF.Rig.DataEntry.StandardCamera if (wmPos > 0) { - labels[i].Text = string.Format("{0} {1}", Strings.Water_Meter, wmPos); + labels[i].Text = wmPos.ToString(); switch (mode) { @@ -318,10 +359,11 @@ namespace TBF.Rig.DataEntry.StandardCamera } else { - endTextBoxes[i].Enabled = true; - enabledTextBoxes.Add(endTextBoxes[i]); - startTextBoxes[i].Enabled = false; - startTextBoxes[i].Text = WMStartStateStr[wmPos - 1]; + startTextBoxes[i].Enabled = true; + startTextBoxes[i].Text = WMStartStateStr[wmPos - 1]; + endTextBoxes[i].Enabled = true; + enabledTextBoxes.Add(startTextBoxes[i]); + enabledTextBoxes.Add(endTextBoxes[i]); } break; @@ -343,16 +385,176 @@ namespace TBF.Rig.DataEntry.StandardCamera } } } + + if (!string.IsNullOrEmpty(ocrMessage)) + { + MessageBox.Show(ocrMessage, Strings.Warning, MessageBoxButtons.OK, MessageBoxIcon.Exclamation); + } + + int imagesCount = ImagesToProcessCount(); + log.WarnFormat("Images to process count = {0}", imagesCount); + /// + if (imagesCount > 0 && ocrVidi != null) + { + log.WarnFormat("Starting image processing thread with OcrVidi={0} and OcrStream={1}", ocrVidi, streamName); + + /// Delegate for a thread->form communication + ocrTextObtained = new OcrTextObtainedDelegate(OnOcrTextObtained); + + /// Show and initalize the progress bar + imageProcessingProgressLabel.Visible = true; + imageProcessingProgressBar.Visible = true; + imageProcessingProgressBar.Minimum = 0; + imageProcessingProgressBar.Value = 0; + imageProcessingProgressBar.Maximum = imagesCount; + + /// Start the image processing thread + imageProcessingThread = new Thread(new ThreadStart(ImageProcessingThread)); + imageProcessingThread.Start(); + } } + private void TestStartEndForm_FormClosed(object sender, FormClosedEventArgs e) + { + if (imageProcessingThread != null && imageProcessingThread.IsAlive) + { + imageProcessingThread.Join(2000); + } + } + void Localize() { - Text = Strings.Water_Meter_States; - startLabel.Text = startLabel2.Text = Strings.Start; - endLabel.Text = endLabel2.Text = Strings.End; - okButton.Text = Strings.OkBtnText; + Text = (ocrVidi != null) + ? string.Format("{0} ({1} / {2})", Strings.Water_Meter_States, ocrVidi, streamName) + : Strings.Water_Meter_States; + + startLabel.Text = startLabel2.Text = string.Format("{0} [{1}]", Strings.Start, unit.ToDescription()); + endLabel.Text = endLabel2.Text = string.Format("{0} [{1}]", Strings.End, unit.ToDescription()); + okButton.Text = Strings.OkBtnText; } + int ImagesToProcessCount() + { + int count = 0; + + /// Count the images + for (int i = 0; i < WaterMetersCount; i++) + { + if ((mode == Tst.Start || mode == Tst.Both) && startTextBoxes[wm2phys[i + 1]].Enabled && + startImages != null && startImages.Length > i && !string.IsNullOrEmpty(startImages[i])) + { + count++; + } + + if ((mode == Tst.End || mode == Tst.Both) && endTextBoxes[wm2phys[i + 1]].Enabled && + endImages != null && endImages.Length > i && !string.IsNullOrEmpty(endImages[i])) + { + count++; + } + } + + return count; + } + + void ImageProcessingThread() + { + Thread.Sleep(2000); + + bool[] startImgProcessed = new bool[WaterMetersCount]; + bool[] endImgProcessed = new bool[WaterMetersCount]; + + for (int attempt = 1; attempt <= 3; attempt++) + { + for (int i = 0; i < WaterMetersCount; i++) + { + double pulsesPerLtr = (regReaders != null && regReaders.Length > i) ? regReaders[i].PulsesPerLtr : 1; + GetOcrParameters(pulsesPerLtr, out denominator, out format); + + if ((mode == Tst.Start || mode == Tst.Both) && startTextBoxes[wm2phys[i + 1]].Enabled && + startImages != null && startImages.Length > i && !string.IsNullOrEmpty(startImages[i])) + { + if (!startImgProcessed[i]) + { + try + { + /// Process a start image + var text = ocrVidi.Recognize(streamName, startImages[i], denominator, format); /// OCR + this.Invoke(ocrTextObtained, new object[] { wm2phys[i + 1], false, text }); + startImgProcessed[i] = true; + } + catch (Exception) + { + } + } + } + + if ((mode == Tst.End || mode == Tst.Both) && endTextBoxes[wm2phys[i + 1]].Enabled && + endImages != null && endImages.Length > i && !string.IsNullOrEmpty(endImages[i])) + { + if (!endImgProcessed[i]) + { + try + { + /// Process an end image + var text = ocrVidi.Recognize(streamName, endImages[i], denominator, format); /// OCR + this.Invoke(ocrTextObtained, new object[] { wm2phys[i + 1], true, text }); + endImgProcessed[i] = true; + } + catch (Exception) + { + } + } + } + } + } + } + + void GetOcrParameters(double pulsesPerLtr, out double denominator, out string format) + { + if (pulsesPerLtr == 0.1) + { + denominator = 100; + format = "F2"; + } + else if (pulsesPerLtr == 0.01) + { + denominator = 10; + format = "F1"; + } + else if (pulsesPerLtr == 10) + { + denominator = 10000; + format = "F4"; + } + else // if (pulsesPerLtr == 1) + { + denominator = 1000; + format = "F3"; + } + } + + public void OnOcrTextObtained(int ix, bool isEnd, string text) + { + if (isEnd) + { + if (ix < endTextBoxes.Length && endTextBoxes[ix].Enabled) + { + endTextBoxes[ix].Text = text; + LoadImage(null, Tst.End, ix); + } + } + else + { + if (ix < startTextBoxes.Length && startTextBoxes[ix].Enabled) + { + startTextBoxes[ix].Text = text; + LoadImage(null, Tst.Start, ix); + } + } + + imageProcessingProgressBar.Value++; + } + private void okButton_Click(object sender, EventArgs eArgs) { try @@ -363,20 +565,28 @@ namespace TBF.Rig.DataEntry.StandardCamera if (wmPos > 0) { - if (startTextBoxes[i].Enabled) + if (startTextBoxes[i].Enabled && startTextBoxes[i].Text != WMStartStateStr[wmPos - 1]) { - WMStartStateStr[wmPos - 1] = startTextBoxes[i].Text; - WMStartState[wmPos - 1] = Utils.ParseUDouble(startTextBoxes[i].Text) * regReaders[wmPos - 1].LtrsPerPulse; - } + double val; + if (Utils.TryParseUDouble(startTextBoxes[i].Text, out val)) + { + WMStartState[wmPos - 1] = Units.ConvertFrom(unit, val); /// Convert to liters + WMStartStateStr[wmPos - 1] = startTextBoxes[i].Text; + } + } if (endTextBoxes[i].Enabled) { - WMEndState[wmPos - 1] = Utils.ParseUDouble(endTextBoxes[i].Text) * regReaders[wmPos - 1].LtrsPerPulse; + double val; + if (Utils.TryParseUDouble(endTextBoxes[i].Text, out val)) + { + WMEndState[wmPos - 1] = Units.ConvertFrom(unit, val); /// Convert to liters + } } } } } - catch(Exception e) + catch (Exception e) { log.ErrorFormat("Exception: {0}", e.Message); return; @@ -478,9 +688,17 @@ namespace TBF.Rig.DataEntry.StandardCamera { try { - double startVolumeLtr = Utils.ParseUDouble(startTextBoxes[uiCtrlPos].Text) * regReaders[phys2wm[uiCtrlPos] - 1].LtrsPerPulse; - double endVolumeLtr = Utils.ParseUDouble(endTextBoxes[uiCtrlPos].Text) * regReaders[phys2wm[uiCtrlPos] - 1].LtrsPerPulse; - double err = 100.0 * (endVolumeLtr - startVolumeLtr - refVolume) / refVolume; + double startV = Utils.ParseUDouble(startTextBoxes[uiCtrlPos].Text); + double startVolumeL = (unit == Unit.pulse) + ? startV * regReaders[phys2wm[uiCtrlPos] - 1].LtrsPerPulse + : Units.ConvertFrom(unit, startV); + + double endV = Utils.ParseUDouble(endTextBoxes[uiCtrlPos].Text); + double endVolumeL = (unit == Unit.pulse) + ? endV * regReaders[phys2wm[uiCtrlPos] - 1].LtrsPerPulse + : Units.ConvertFrom(unit, endV); + + double err = 100.0 * (endVolumeL - startVolumeL - refVolume) / refVolume; exclamations[uiCtrlPos].Visible = (err < warningLimLo) || (warningLimHi < err); } catch @@ -572,7 +790,7 @@ namespace TBF.Rig.DataEntry.StandardCamera { if (startTextBoxes[j] == currentTextBox) { - LoadImage(Tst.Start, j); + LoadImage(currentTextBox, Tst.Start, j); return; } } @@ -580,7 +798,7 @@ namespace TBF.Rig.DataEntry.StandardCamera { if (endTextBoxes[j] == currentTextBox) { - LoadImage(Tst.End, j); + LoadImage(currentTextBox, Tst.End, j); return; } } @@ -593,103 +811,103 @@ namespace TBF.Rig.DataEntry.StandardCamera } - private void startTextBox1_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(Tst.Start, 0); } - private void startTextBox2_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(Tst.Start, 1); } - private void startTextBox3_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(Tst.Start, 2); } - private void startTextBox4_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(Tst.Start, 3); } - private void startTextBox5_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(Tst.Start, 4); } - private void startTextBox6_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(Tst.Start, 5); } - private void startTextBox7_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(Tst.Start, 6); } - private void startTextBox8_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(Tst.Start, 7); } - private void startTextBox9_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(Tst.Start, 8); } - private void startTextBox10_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(Tst.Start, 9); } - private void startTextBox11_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(Tst.Start, 10); } - private void startTextBox12_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(Tst.Start, 11); } - private void startTextBox13_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(Tst.Start, 12); } - private void startTextBox14_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(Tst.Start, 13); } - private void startTextBox15_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(Tst.Start, 14); } - private void startTextBox16_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(Tst.Start, 15); } - private void startTextBox17_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(Tst.Start, 16); } - private void startTextBox18_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(Tst.Start, 17); } - private void startTextBox19_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(Tst.Start, 18); } - private void startTextBox20_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(Tst.Start, 19); } - private void startTextBox21_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(Tst.Start, 20); } - private void startTextBox22_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(Tst.Start, 21); } - private void startTextBox23_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(Tst.Start, 22); } - private void startTextBox24_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(Tst.Start, 23); } - private void startTextBox1_MouseDown(object sender, MouseEventArgs e) { LoadImage(Tst.Start, 0); } - private void startTextBox2_MouseDown(object sender, MouseEventArgs e) { LoadImage(Tst.Start, 1); } - private void startTextBox3_MouseDown(object sender, MouseEventArgs e) { LoadImage(Tst.Start, 2); } - private void startTextBox4_MouseDown(object sender, MouseEventArgs e) { LoadImage(Tst.Start, 3); } - private void startTextBox5_MouseDown(object sender, MouseEventArgs e) { LoadImage(Tst.Start, 4); } - private void startTextBox6_MouseDown(object sender, MouseEventArgs e) { LoadImage(Tst.Start, 5); } - private void startTextBox7_MouseDown(object sender, MouseEventArgs e) { LoadImage(Tst.Start, 6); } - private void startTextBox8_MouseDown(object sender, MouseEventArgs e) { LoadImage(Tst.Start, 7); } - private void startTextBox9_MouseDown(object sender, MouseEventArgs e) { LoadImage(Tst.Start, 8); } - private void startTextBox10_MouseDown(object sender, MouseEventArgs e) { LoadImage(Tst.Start, 9); } - private void startTextBox11_MouseDown(object sender, MouseEventArgs e) { LoadImage(Tst.Start, 10); } - private void startTextBox12_MouseDown(object sender, MouseEventArgs e) { LoadImage(Tst.Start, 11); } - private void startTextBox13_MouseDown(object sender, MouseEventArgs e) { LoadImage(Tst.Start, 12); } - private void startTextBox14_MouseDown(object sender, MouseEventArgs e) { LoadImage(Tst.Start, 13); } - private void startTextBox15_MouseDown(object sender, MouseEventArgs e) { LoadImage(Tst.Start, 14); } - private void startTextBox16_MouseDown(object sender, MouseEventArgs e) { LoadImage(Tst.Start, 15); } - private void startTextBox17_MouseDown(object sender, MouseEventArgs e) { LoadImage(Tst.Start, 16); } - private void startTextBox18_MouseDown(object sender, MouseEventArgs e) { LoadImage(Tst.Start, 17); } - private void startTextBox19_MouseDown(object sender, MouseEventArgs e) { LoadImage(Tst.Start, 18); } - private void startTextBox20_MouseDown(object sender, MouseEventArgs e) { LoadImage(Tst.Start, 19); } - private void startTextBox21_MouseDown(object sender, MouseEventArgs e) { LoadImage(Tst.Start, 20); } - private void startTextBox22_MouseDown(object sender, MouseEventArgs e) { LoadImage(Tst.Start, 21); } - private void startTextBox23_MouseDown(object sender, MouseEventArgs e) { LoadImage(Tst.Start, 22); } - private void startTextBox24_MouseDown(object sender, MouseEventArgs e) { LoadImage(Tst.Start, 23); } + private void startTextBox1_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(sender, Tst.Start, 0); } + private void startTextBox2_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(sender, Tst.Start, 1); } + private void startTextBox3_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(sender, Tst.Start, 2); } + private void startTextBox4_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(sender, Tst.Start, 3); } + private void startTextBox5_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(sender, Tst.Start, 4); } + private void startTextBox6_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(sender, Tst.Start, 5); } + private void startTextBox7_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(sender, Tst.Start, 6); } + private void startTextBox8_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(sender, Tst.Start, 7); } + private void startTextBox9_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(sender, Tst.Start, 8); } + private void startTextBox10_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(sender, Tst.Start, 9); } + private void startTextBox11_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(sender, Tst.Start, 10); } + private void startTextBox12_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(sender, Tst.Start, 11); } + private void startTextBox13_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(sender, Tst.Start, 12); } + private void startTextBox14_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(sender, Tst.Start, 13); } + private void startTextBox15_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(sender, Tst.Start, 14); } + private void startTextBox16_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(sender, Tst.Start, 15); } + private void startTextBox17_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(sender, Tst.Start, 16); } + private void startTextBox18_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(sender, Tst.Start, 17); } + private void startTextBox19_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(sender, Tst.Start, 18); } + private void startTextBox20_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(sender, Tst.Start, 19); } + private void startTextBox21_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(sender, Tst.Start, 20); } + private void startTextBox22_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(sender, Tst.Start, 21); } + private void startTextBox23_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(sender, Tst.Start, 22); } + private void startTextBox24_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(sender, Tst.Start, 23); } + private void startTextBox1_MouseDown(object sender, MouseEventArgs e) { LoadImage(sender, Tst.Start, 0); } + private void startTextBox2_MouseDown(object sender, MouseEventArgs e) { LoadImage(sender, Tst.Start, 1); } + private void startTextBox3_MouseDown(object sender, MouseEventArgs e) { LoadImage(sender, Tst.Start, 2); } + private void startTextBox4_MouseDown(object sender, MouseEventArgs e) { LoadImage(sender, Tst.Start, 3); } + private void startTextBox5_MouseDown(object sender, MouseEventArgs e) { LoadImage(sender, Tst.Start, 4); } + private void startTextBox6_MouseDown(object sender, MouseEventArgs e) { LoadImage(sender, Tst.Start, 5); } + private void startTextBox7_MouseDown(object sender, MouseEventArgs e) { LoadImage(sender, Tst.Start, 6); } + private void startTextBox8_MouseDown(object sender, MouseEventArgs e) { LoadImage(sender, Tst.Start, 7); } + private void startTextBox9_MouseDown(object sender, MouseEventArgs e) { LoadImage(sender, Tst.Start, 8); } + private void startTextBox10_MouseDown(object sender, MouseEventArgs e) { LoadImage(sender, Tst.Start, 9); } + private void startTextBox11_MouseDown(object sender, MouseEventArgs e) { LoadImage(sender, Tst.Start, 10); } + private void startTextBox12_MouseDown(object sender, MouseEventArgs e) { LoadImage(sender, Tst.Start, 11); } + private void startTextBox13_MouseDown(object sender, MouseEventArgs e) { LoadImage(sender, Tst.Start, 12); } + private void startTextBox14_MouseDown(object sender, MouseEventArgs e) { LoadImage(sender, Tst.Start, 13); } + private void startTextBox15_MouseDown(object sender, MouseEventArgs e) { LoadImage(sender, Tst.Start, 14); } + private void startTextBox16_MouseDown(object sender, MouseEventArgs e) { LoadImage(sender, Tst.Start, 15); } + private void startTextBox17_MouseDown(object sender, MouseEventArgs e) { LoadImage(sender, Tst.Start, 16); } + private void startTextBox18_MouseDown(object sender, MouseEventArgs e) { LoadImage(sender, Tst.Start, 17); } + private void startTextBox19_MouseDown(object sender, MouseEventArgs e) { LoadImage(sender, Tst.Start, 18); } + private void startTextBox20_MouseDown(object sender, MouseEventArgs e) { LoadImage(sender, Tst.Start, 19); } + private void startTextBox21_MouseDown(object sender, MouseEventArgs e) { LoadImage(sender, Tst.Start, 20); } + private void startTextBox22_MouseDown(object sender, MouseEventArgs e) { LoadImage(sender, Tst.Start, 21); } + private void startTextBox23_MouseDown(object sender, MouseEventArgs e) { LoadImage(sender, Tst.Start, 22); } + private void startTextBox24_MouseDown(object sender, MouseEventArgs e) { LoadImage(sender, Tst.Start, 23); } - private void endTextBox1_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(Tst.End, 0); } - private void endTextBox2_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(Tst.End, 1); } - private void endTextBox3_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(Tst.End, 2); } - private void endTextBox4_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(Tst.End, 3); } - private void endTextBox5_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(Tst.End, 4); } - private void endTextBox6_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(Tst.End, 5); } - private void endTextBox7_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(Tst.End, 6); } - private void endTextBox8_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(Tst.End, 7); } - private void endTextBox9_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(Tst.End, 8); } - private void endTextBox10_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(Tst.End, 9); } - private void endTextBox11_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(Tst.End, 10); } - private void endTextBox12_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(Tst.End, 11); } - private void endTextBox13_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(Tst.End, 12); } - private void endTextBox14_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(Tst.End, 13); } - private void endTextBox15_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(Tst.End, 14); } - private void endTextBox16_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(Tst.End, 15); } - private void endTextBox17_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(Tst.End, 16); } - private void endTextBox18_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(Tst.End, 17); } - private void endTextBox19_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(Tst.End, 18); } - private void endTextBox20_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(Tst.End, 19); } - private void endTextBox21_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(Tst.End, 20); } - private void endTextBox22_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(Tst.End, 21); } - private void endTextBox24_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(Tst.End, 22); } - private void endTextBox23_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(Tst.End, 23); } - private void endTextBox1_MouseDown(object sender, MouseEventArgs e) { LoadImage(Tst.End, 0); } - private void endTextBox2_MouseDown(object sender, MouseEventArgs e) { LoadImage(Tst.End, 1); } - private void endTextBox3_MouseDown(object sender, MouseEventArgs e) { LoadImage(Tst.End, 2); } - private void endTextBox4_MouseDown(object sender, MouseEventArgs e) { LoadImage(Tst.End, 3); } - private void endTextBox5_MouseDown(object sender, MouseEventArgs e) { LoadImage(Tst.End, 4); } - private void endTextBox6_MouseDown(object sender, MouseEventArgs e) { LoadImage(Tst.End, 5); } - private void endTextBox7_MouseDown(object sender, MouseEventArgs e) { LoadImage(Tst.End, 6); } - private void endTextBox8_MouseDown(object sender, MouseEventArgs e) { LoadImage(Tst.End, 7); } - private void endTextBox9_MouseDown(object sender, MouseEventArgs e) { LoadImage(Tst.End, 8); } - private void endTextBox10_MouseDown(object sender, MouseEventArgs e) { LoadImage(Tst.End, 9); } - private void endTextBox11_MouseDown(object sender, MouseEventArgs e) { LoadImage(Tst.End, 10); } - private void endTextBox12_MouseDown(object sender, MouseEventArgs e) { LoadImage(Tst.End, 11); } - private void endTextBox13_MouseDown(object sender, MouseEventArgs e) { LoadImage(Tst.End, 12); } - private void endTextBox14_MouseDown(object sender, MouseEventArgs e) { LoadImage(Tst.End, 13); } - private void endTextBox15_MouseDown(object sender, MouseEventArgs e) { LoadImage(Tst.End, 14); } - private void endTextBox16_MouseDown(object sender, MouseEventArgs e) { LoadImage(Tst.End, 15); } - private void endTextBox17_MouseDown(object sender, MouseEventArgs e) { LoadImage(Tst.End, 16); } - private void endTextBox18_MouseDown(object sender, MouseEventArgs e) { LoadImage(Tst.End, 17); } - private void endTextBox19_MouseDown(object sender, MouseEventArgs e) { LoadImage(Tst.End, 18); } - private void endTextBox20_MouseDown(object sender, MouseEventArgs e) { LoadImage(Tst.End, 19); } - private void endTextBox21_MouseDown(object sender, MouseEventArgs e) { LoadImage(Tst.End, 20); } - private void endTextBox22_MouseDown(object sender, MouseEventArgs e) { LoadImage(Tst.End, 21); } - private void endTextBox23_MouseDown(object sender, MouseEventArgs e) { LoadImage(Tst.End, 22); } - private void endTextBox24_MouseDown(object sender, MouseEventArgs e) { LoadImage(Tst.End, 23); } + private void endTextBox1_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(sender, Tst.End, 0); } + private void endTextBox2_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(sender, Tst.End, 1); } + private void endTextBox3_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(sender, Tst.End, 2); } + private void endTextBox4_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(sender, Tst.End, 3); } + private void endTextBox5_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(sender, Tst.End, 4); } + private void endTextBox6_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(sender, Tst.End, 5); } + private void endTextBox7_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(sender, Tst.End, 6); } + private void endTextBox8_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(sender, Tst.End, 7); } + private void endTextBox9_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(sender, Tst.End, 8); } + private void endTextBox10_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(sender, Tst.End, 9); } + private void endTextBox11_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(sender, Tst.End, 10); } + private void endTextBox12_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(sender, Tst.End, 11); } + private void endTextBox13_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(sender, Tst.End, 12); } + private void endTextBox14_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(sender, Tst.End, 13); } + private void endTextBox15_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(sender, Tst.End, 14); } + private void endTextBox16_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(sender, Tst.End, 15); } + private void endTextBox17_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(sender, Tst.End, 16); } + private void endTextBox18_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(sender, Tst.End, 17); } + private void endTextBox19_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(sender, Tst.End, 18); } + private void endTextBox20_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(sender, Tst.End, 19); } + private void endTextBox21_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(sender, Tst.End, 20); } + private void endTextBox22_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(sender, Tst.End, 21); } + private void endTextBox24_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(sender, Tst.End, 22); } + private void endTextBox23_AcceptsTabChanged(object sender, EventArgs e) { LoadImage(sender, Tst.End, 23); } + private void endTextBox1_MouseDown(object sender, MouseEventArgs e) { LoadImage(sender, Tst.End, 0); } + private void endTextBox2_MouseDown(object sender, MouseEventArgs e) { LoadImage(sender, Tst.End, 1); } + private void endTextBox3_MouseDown(object sender, MouseEventArgs e) { LoadImage(sender, Tst.End, 2); } + private void endTextBox4_MouseDown(object sender, MouseEventArgs e) { LoadImage(sender, Tst.End, 3); } + private void endTextBox5_MouseDown(object sender, MouseEventArgs e) { LoadImage(sender, Tst.End, 4); } + private void endTextBox6_MouseDown(object sender, MouseEventArgs e) { LoadImage(sender, Tst.End, 5); } + private void endTextBox7_MouseDown(object sender, MouseEventArgs e) { LoadImage(sender, Tst.End, 6); } + private void endTextBox8_MouseDown(object sender, MouseEventArgs e) { LoadImage(sender, Tst.End, 7); } + private void endTextBox9_MouseDown(object sender, MouseEventArgs e) { LoadImage(sender, Tst.End, 8); } + private void endTextBox10_MouseDown(object sender, MouseEventArgs e) { LoadImage(sender, Tst.End, 9); } + private void endTextBox11_MouseDown(object sender, MouseEventArgs e) { LoadImage(sender, Tst.End, 10); } + private void endTextBox12_MouseDown(object sender, MouseEventArgs e) { LoadImage(sender, Tst.End, 11); } + private void endTextBox13_MouseDown(object sender, MouseEventArgs e) { LoadImage(sender, Tst.End, 12); } + private void endTextBox14_MouseDown(object sender, MouseEventArgs e) { LoadImage(sender, Tst.End, 13); } + private void endTextBox15_MouseDown(object sender, MouseEventArgs e) { LoadImage(sender, Tst.End, 14); } + private void endTextBox16_MouseDown(object sender, MouseEventArgs e) { LoadImage(sender, Tst.End, 15); } + private void endTextBox17_MouseDown(object sender, MouseEventArgs e) { LoadImage(sender, Tst.End, 16); } + private void endTextBox18_MouseDown(object sender, MouseEventArgs e) { LoadImage(sender, Tst.End, 17); } + private void endTextBox19_MouseDown(object sender, MouseEventArgs e) { LoadImage(sender, Tst.End, 18); } + private void endTextBox20_MouseDown(object sender, MouseEventArgs e) { LoadImage(sender, Tst.End, 19); } + private void endTextBox21_MouseDown(object sender, MouseEventArgs e) { LoadImage(sender, Tst.End, 20); } + private void endTextBox22_MouseDown(object sender, MouseEventArgs e) { LoadImage(sender, Tst.End, 21); } + private void endTextBox23_MouseDown(object sender, MouseEventArgs e) { LoadImage(sender, Tst.End, 22); } + private void endTextBox24_MouseDown(object sender, MouseEventArgs e) { LoadImage(sender, Tst.End, 23); } /// /// Loads appropriate image into pictureBox1.Image @@ -697,17 +915,17 @@ namespace TBF.Rig.DataEntry.StandardCamera /// /// Tst.Start or Tst.End /// 0..23 - void LoadImage(Tst startOrEnd, int physPos) + void LoadImage(object sender, Tst startOrEnd, int physPos) { - ShowUnits(startOrEnd, physPos); - int wmNr1b = phys2wm[physPos]; /// 0 means no WM - wmNr0b = Math.Max(0, wmNr1b - 1); + if (wmNr1b <= 0) return; + + wmNr0b = wmNr1b - 1; string imageFileName; - if ((startOrEnd == Tst.Start) && (wmNr1b > 0) && (startImages[wmNr0b] != null)) + if (startOrEnd == Tst.Start && startImages[wmNr0b] != null) imageFileName = startImages[wmNr0b]; - else if ((startOrEnd == Tst.End) && (wmNr1b > 0) && (endImages[wmNr0b] != null)) + else if (startOrEnd == Tst.End && endImages[wmNr0b] != null) imageFileName = endImages[wmNr0b]; else imageFileName = string.Empty; @@ -718,6 +936,7 @@ namespace TBF.Rig.DataEntry.StandardCamera } lastImageName = imageFileName; + lastWmNr1 = wmNr1b; if (string.IsNullOrEmpty(imageFileName) || !File.Exists(imageFileName)) { @@ -725,16 +944,31 @@ namespace TBF.Rig.DataEntry.StandardCamera } else { - using (Bitmap tempBmp = Image.FromFile(imageFileName) as Bitmap) - { - int hght = tempBmp.Height; - int leftMargin = (tempBmp.Width - hght) / 2; - lastImage = new Bitmap(tempBmp.Clone(new Rectangle(leftMargin, 0, hght, hght), tempBmp.PixelFormat)); - if (isZoomed[wmNr0b]) - { - zoomedImage = MakeZoomedImage(lastImage, zoomCenterLoc[wmNr0b]); - } - } + using (Bitmap tempBmp = Image.FromFile(imageFileName) as Bitmap) + { + Rectangle rect; + if (tempBmp.Height < tempBmp.Width) + { + int hght = tempBmp.Height; + int leftMargin = (tempBmp.Width - hght) / 2; + rect = new Rectangle(leftMargin, 0, hght, hght); + } + else + { + int hght = tempBmp.Height; + int wdth = tempBmp.Width; + int margin = (hght - wdth) / 2; + rect = new Rectangle(0, margin, wdth, wdth); + } + //int hght = tempBmp.Height; + //int leftMargin = (tempBmp.Width - hght) / 2; + //lastImage = new Bitmap(tempBmp.Clone(new Rectangle(leftMargin, 0, hght, hght), tempBmp.PixelFormat)); + lastImage = new Bitmap(tempBmp.Clone(rect, tempBmp.PixelFormat)); + if (isZoomed[wmNr0b]) + { + zoomedImage = MakeZoomedImage(lastImage, zoomCenterLoc[wmNr0b]); + } + } } ShowImage(); @@ -752,7 +986,7 @@ namespace TBF.Rig.DataEntry.StandardCamera if (me.Button == MouseButtons.Left && !isZoomed[wmNr0b]) { - switch (imageRotation[wmNr0b]) + switch (imageRotation) { case Rotation.R0: zoomCenterLoc[wmNr0b] = me.Location; @@ -786,9 +1020,9 @@ namespace TBF.Rig.DataEntry.StandardCamera { if (lastImage == null) return; - if (++imageRotation[wmNr0b] == Rotation.Count) + if (++imageRotation == Rotation.Count) { - imageRotation[wmNr0b] = Rotation.R0; + imageRotation = Rotation.R0; } ShowImage(); } @@ -807,9 +1041,17 @@ namespace TBF.Rig.DataEntry.StandardCamera return lastImage.Clone(newRect, oriImage.PixelFormat); } + /// + /// Used by ShowImage() + /// + Brush lightBrush = new SolidBrush(Color.LightGreen); + Brush darkBrush = new SolidBrush(Color.Green); + Font largeFont = new Font("arial", 24.0F, FontStyle.Bold); /// normal image + Font smallFont = new Font("arial", 12.0F, FontStyle.Bold); /// zoomed image + /// /// Show selected image in the picture box. - /// lastImage, zoomedImage, isZoomed and imageRotation are used. + /// lastWmNr1, lastImage, zoomedImage, isZoomed and imageRotation are used. /// void ShowImage() { @@ -823,96 +1065,37 @@ namespace TBF.Rig.DataEntry.StandardCamera ? new Bitmap(zoomedImage.Clone(new Rectangle(0, 0, zoomedImage.Width, zoomedImage.Height), zoomedImage.PixelFormat)) : new Bitmap(lastImage.Clone(new Rectangle(0, 0, lastImage.Width, lastImage.Height), lastImage.PixelFormat)); - switch (imageRotation[wmNr0b]) + switch (imageRotation) { case Rotation.R90: tempBmp.RotateFlip(RotateFlipType.Rotate270FlipNone); break; case Rotation.R180: tempBmp.RotateFlip(RotateFlipType.Rotate180FlipNone); break; case Rotation.R270: tempBmp.RotateFlip(RotateFlipType.Rotate90FlipNone); break; } + /// Write water meter number to the bitmap + using (var grph = Graphics.FromImage(tempBmp)) + { + Font font = isZoomed[wmNr0b] ? smallFont : largeFont; + int margin = isZoomed[wmNr0b] ? 1 : 2; + + int pixelsCount = 0; + int brightness = 0; + for (int x = margin; x <= 8 * margin; x += margin) + { + for (int y = margin; y <= 8 * margin; y += margin) + { + brightness += (int)tempBmp.GetPixel(x, y).G; + pixelsCount++; + } + } + brightness /= pixelsCount; + + Brush brush = (brightness > 160) ? darkBrush : lightBrush; + + grph.DrawString(lastWmNr1.ToString(), font, brush, margin, margin); + } + pictureBox1.Image = tempBmp; } - - - /// - /// Updates startLabel.Text, startLabel2.Text, endLabel.Text, endLabel2.Text - /// Appends appropriate units of volume. - /// Handles mouse clicks and Tab-changes inside text boxes. - /// - /// Tst.Start or Tst.End - /// 0..24 - void ShowUnits(Tst startEnd, int physPos) - { - int wmNr = phys2wm[physPos]; - - if (wmNr > 0 && startEnd == Tst.Start) - { - if (regReaders[wmNr - 1] != null) - { - if (physPos < 12) - { - startLabel.Text = string.Format("{0} [{1}]", Strings.Start, GetUnitStr(regReaders[wmNr - 1].PulsesPerLtr)); - startLabel2.Text = Strings.Start; - } - else - { - startLabel.Text = Strings.Start; - startLabel2.Text = string.Format("{0} [{1}]", Strings.Start, GetUnitStr(regReaders[wmNr - 1].PulsesPerLtr)); - } - } - else - { - startLabel.Text = startLabel2.Text = Strings.Start; - } - endLabel.Text = endLabel2.Text = Strings.End; - } - else if (wmNr > 0 && startEnd == Tst.End) - { - startLabel.Text = startLabel2.Text = Strings.Start; - - if (regReaders[wmNr - 1] != null) - { - if (physPos < 12) - { - endLabel.Text = string.Format("{0} [{1}]", Strings.End, GetUnitStr(regReaders[wmNr - 1].PulsesPerLtr)); - endLabel2.Text = Strings.End; - } - else - { - endLabel.Text = Strings.End; - endLabel2.Text = string.Format("{0} [{1}]", Strings.End, GetUnitStr(regReaders[wmNr - 1].PulsesPerLtr)); - } - } - else - { - endLabel.Text = endLabel2.Text = Strings.End; - } - } - else - { - startLabel.Text = startLabel2.Text = Strings.Start; - endLabel.Text = endLabel2.Text = Strings.End; - } - } - /// - string GetUnitStr(double pulsesPerLtr) - { - if (pulsesPerLtr == 1 || pulsesPerLtr <= float.Epsilon) - { - return "l"; - } - else if (pulsesPerLtr == 0.001) - { - return "m3"; - } - else if (pulsesPerLtr == 1000) - { - return "ml"; - } - else - { - return string.Format("{0} l", 1 / pulsesPerLtr); - } - } } } diff --git a/TBF/Rig/DataEntry/StandardCamera/TestStartEndForm.designer.cs b/TBF/Rig/DataEntry/StandardCamera/TestStartEndForm.designer.cs index bc5097609..0d8d3d5d4 100644 --- a/TBF/Rig/DataEntry/StandardCamera/TestStartEndForm.designer.cs +++ b/TBF/Rig/DataEntry/StandardCamera/TestStartEndForm.designer.cs @@ -31,1527 +31,1552 @@ namespace TBF.Rig.DataEntry.StandardCamera /// private void InitializeComponent() { - this.exclamation1 = new System.Windows.Forms.Label(); - this.startTextBox1 = new System.Windows.Forms.TextBox(); - this.endTextBox1 = new System.Windows.Forms.TextBox(); - this.label1 = new System.Windows.Forms.Label(); - this.okButton = new System.Windows.Forms.Button(); - this.exclamation3 = new System.Windows.Forms.Label(); - this.startTextBox3 = new System.Windows.Forms.TextBox(); - this.endTextBox3 = new System.Windows.Forms.TextBox(); - this.label3 = new System.Windows.Forms.Label(); - this.exclamation4 = new System.Windows.Forms.Label(); - this.startTextBox4 = new System.Windows.Forms.TextBox(); - this.endTextBox4 = new System.Windows.Forms.TextBox(); - this.label4 = new System.Windows.Forms.Label(); - this.exclamation5 = new System.Windows.Forms.Label(); - this.startTextBox5 = new System.Windows.Forms.TextBox(); - this.endTextBox5 = new System.Windows.Forms.TextBox(); - this.label5 = new System.Windows.Forms.Label(); - this.exclamation6 = new System.Windows.Forms.Label(); - this.startTextBox6 = new System.Windows.Forms.TextBox(); - this.endTextBox6 = new System.Windows.Forms.TextBox(); - this.label6 = new System.Windows.Forms.Label(); - this.startLabel = new System.Windows.Forms.Label(); - this.endLabel = new System.Windows.Forms.Label(); - this.label2 = new System.Windows.Forms.Label(); - this.endTextBox2 = new System.Windows.Forms.TextBox(); - this.startTextBox2 = new System.Windows.Forms.TextBox(); - this.exclamation2 = new System.Windows.Forms.Label(); - this.exclamation7 = new System.Windows.Forms.Label(); - this.startTextBox7 = new System.Windows.Forms.TextBox(); - this.endTextBox7 = new System.Windows.Forms.TextBox(); - this.label7 = new System.Windows.Forms.Label(); - this.exclamation8 = new System.Windows.Forms.Label(); - this.startTextBox8 = new System.Windows.Forms.TextBox(); - this.endTextBox8 = new System.Windows.Forms.TextBox(); - this.label8 = new System.Windows.Forms.Label(); - this.exclamation9 = new System.Windows.Forms.Label(); - this.startTextBox9 = new System.Windows.Forms.TextBox(); - this.endTextBox9 = new System.Windows.Forms.TextBox(); - this.label9 = new System.Windows.Forms.Label(); - this.exclamation10 = new System.Windows.Forms.Label(); - this.startTextBox10 = new System.Windows.Forms.TextBox(); - this.endTextBox10 = new System.Windows.Forms.TextBox(); - this.label10 = new System.Windows.Forms.Label(); - this.exclamation11 = new System.Windows.Forms.Label(); - this.startTextBox11 = new System.Windows.Forms.TextBox(); - this.endTextBox11 = new System.Windows.Forms.TextBox(); - this.label11 = new System.Windows.Forms.Label(); - this.exclamation12 = new System.Windows.Forms.Label(); - this.startTextBox12 = new System.Windows.Forms.TextBox(); - this.endTextBox12 = new System.Windows.Forms.TextBox(); - this.label12 = new System.Windows.Forms.Label(); - this.exclamation24 = new System.Windows.Forms.Label(); - this.startTextBox24 = new System.Windows.Forms.TextBox(); - this.endTextBox24 = new System.Windows.Forms.TextBox(); - this.label24 = new System.Windows.Forms.Label(); - this.exclamation23 = new System.Windows.Forms.Label(); - this.startTextBox23 = new System.Windows.Forms.TextBox(); - this.endTextBox23 = new System.Windows.Forms.TextBox(); - this.label23 = new System.Windows.Forms.Label(); - this.exclamation22 = new System.Windows.Forms.Label(); - this.startTextBox22 = new System.Windows.Forms.TextBox(); - this.endTextBox22 = new System.Windows.Forms.TextBox(); - this.label22 = new System.Windows.Forms.Label(); - this.exclamation21 = new System.Windows.Forms.Label(); - this.startTextBox21 = new System.Windows.Forms.TextBox(); - this.endTextBox21 = new System.Windows.Forms.TextBox(); - this.label21 = new System.Windows.Forms.Label(); - this.exclamation20 = new System.Windows.Forms.Label(); - this.startTextBox20 = new System.Windows.Forms.TextBox(); - this.endTextBox20 = new System.Windows.Forms.TextBox(); - this.label20 = new System.Windows.Forms.Label(); - this.exclamation19 = new System.Windows.Forms.Label(); - this.startTextBox19 = new System.Windows.Forms.TextBox(); - this.endTextBox19 = new System.Windows.Forms.TextBox(); - this.label19 = new System.Windows.Forms.Label(); - this.exclamation18 = new System.Windows.Forms.Label(); - this.exclamation17 = new System.Windows.Forms.Label(); - this.startTextBox18 = new System.Windows.Forms.TextBox(); - this.exclamation16 = new System.Windows.Forms.Label(); - this.endTextBox18 = new System.Windows.Forms.TextBox(); - this.label18 = new System.Windows.Forms.Label(); - this.startTextBox17 = new System.Windows.Forms.TextBox(); - this.exclamation15 = new System.Windows.Forms.Label(); - this.endTextBox17 = new System.Windows.Forms.TextBox(); - this.label17 = new System.Windows.Forms.Label(); - this.startTextBox16 = new System.Windows.Forms.TextBox(); - this.exclamation14 = new System.Windows.Forms.Label(); - this.endTextBox16 = new System.Windows.Forms.TextBox(); - this.label16 = new System.Windows.Forms.Label(); - this.startTextBox15 = new System.Windows.Forms.TextBox(); - this.exclamation13 = new System.Windows.Forms.Label(); - this.endTextBox15 = new System.Windows.Forms.TextBox(); - this.label15 = new System.Windows.Forms.Label(); - this.startTextBox14 = new System.Windows.Forms.TextBox(); - this.endLabel2 = new System.Windows.Forms.Label(); - this.endTextBox14 = new System.Windows.Forms.TextBox(); - this.label14 = new System.Windows.Forms.Label(); - this.startTextBox13 = new System.Windows.Forms.TextBox(); - this.startLabel2 = new System.Windows.Forms.Label(); - this.endTextBox13 = new System.Windows.Forms.TextBox(); - this.label13 = new System.Windows.Forms.Label(); - this.pictureBox1 = new System.Windows.Forms.PictureBox(); - this.rotateImageButton = new System.Windows.Forms.Button(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); - this.SuspendLayout(); - // - // exclamation1 - // - this.exclamation1.AutoSize = true; - this.exclamation1.Font = new System.Drawing.Font("Verdana", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.exclamation1.ForeColor = System.Drawing.Color.Red; - this.exclamation1.Location = new System.Drawing.Point(538, 521); - this.exclamation1.Name = "exclamation1"; - this.exclamation1.Size = new System.Drawing.Size(23, 29); - this.exclamation1.TabIndex = 5; - this.exclamation1.Text = "!"; - this.exclamation1.Visible = false; - // - // startTextBox1 - // - this.startTextBox1.Enabled = false; - this.startTextBox1.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.startTextBox1.Location = new System.Drawing.Point(191, 525); - this.startTextBox1.Name = "startTextBox1"; - this.startTextBox1.Size = new System.Drawing.Size(163, 27); - this.startTextBox1.TabIndex = 3; - this.startTextBox1.Visible = false; - this.startTextBox1.AcceptsTabChanged += new System.EventHandler(this.startTextBox1_AcceptsTabChanged); - this.startTextBox1.TextChanged += new System.EventHandler(this.startTextBox1_TextChanged); - this.startTextBox1.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox1_KeyPress); - this.startTextBox1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.startTextBox1_MouseDown); - // - // endTextBox1 - // - this.endTextBox1.Enabled = false; - this.endTextBox1.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.endTextBox1.Location = new System.Drawing.Point(373, 525); - this.endTextBox1.Name = "endTextBox1"; - this.endTextBox1.Size = new System.Drawing.Size(163, 27); - this.endTextBox1.TabIndex = 4; - this.endTextBox1.Visible = false; - this.endTextBox1.AcceptsTabChanged += new System.EventHandler(this.endTextBox1_AcceptsTabChanged); - this.endTextBox1.TextChanged += new System.EventHandler(this.endTextBox1_TextChanged); - this.endTextBox1.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox1_KeyPress); - this.endTextBox1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.endTextBox1_MouseDown); - // - // label1 - // - this.label1.AutoSize = true; - this.label1.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.label1.Location = new System.Drawing.Point(29, 528); - this.label1.Name = "label1"; - this.label1.Size = new System.Drawing.Size(126, 18); - this.label1.TabIndex = 2; - this.label1.Text = "Water Meter 1"; - this.label1.Visible = false; - // - // okButton - // - this.okButton.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.okButton.ForeColor = System.Drawing.Color.Black; - this.okButton.Location = new System.Drawing.Point(937, 54); - this.okButton.Name = "okButton"; - this.okButton.Size = new System.Drawing.Size(98, 63); - this.okButton.TabIndex = 100; - this.okButton.Text = "OK"; - this.okButton.UseVisualStyleBackColor = true; - this.okButton.Click += new System.EventHandler(this.okButton_Click); - // - // exclamation3 - // - this.exclamation3.AutoSize = true; - this.exclamation3.Font = new System.Drawing.Font("Verdana", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.exclamation3.ForeColor = System.Drawing.Color.Red; - this.exclamation3.Location = new System.Drawing.Point(538, 581); - this.exclamation3.Name = "exclamation3"; - this.exclamation3.Size = new System.Drawing.Size(23, 29); - this.exclamation3.TabIndex = 13; - this.exclamation3.Text = "!"; - this.exclamation3.Visible = false; - // - // startTextBox3 - // - this.startTextBox3.Enabled = false; - this.startTextBox3.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.startTextBox3.Location = new System.Drawing.Point(191, 585); - this.startTextBox3.Name = "startTextBox3"; - this.startTextBox3.Size = new System.Drawing.Size(163, 27); - this.startTextBox3.TabIndex = 11; - this.startTextBox3.Visible = false; - this.startTextBox3.AcceptsTabChanged += new System.EventHandler(this.startTextBox3_AcceptsTabChanged); - this.startTextBox3.TextChanged += new System.EventHandler(this.startTextBox3_TextChanged); - this.startTextBox3.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox3_KeyPress); - this.startTextBox3.MouseDown += new System.Windows.Forms.MouseEventHandler(this.startTextBox3_MouseDown); - // - // endTextBox3 - // - this.endTextBox3.Enabled = false; - this.endTextBox3.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.endTextBox3.Location = new System.Drawing.Point(373, 585); - this.endTextBox3.Name = "endTextBox3"; - this.endTextBox3.Size = new System.Drawing.Size(163, 27); - this.endTextBox3.TabIndex = 12; - this.endTextBox3.Visible = false; - this.endTextBox3.AcceptsTabChanged += new System.EventHandler(this.endTextBox3_AcceptsTabChanged); - this.endTextBox3.TextChanged += new System.EventHandler(this.endTextBox3_TextChanged); - this.endTextBox3.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox3_KeyPress); - this.endTextBox3.MouseDown += new System.Windows.Forms.MouseEventHandler(this.endTextBox3_MouseDown); - // - // label3 - // - this.label3.AutoSize = true; - this.label3.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.label3.Location = new System.Drawing.Point(29, 588); - this.label3.Name = "label3"; - this.label3.Size = new System.Drawing.Size(126, 18); - this.label3.TabIndex = 10; - this.label3.Text = "Water Meter 3"; - this.label3.Visible = false; - // - // exclamation4 - // - this.exclamation4.AutoSize = true; - this.exclamation4.Font = new System.Drawing.Font("Verdana", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.exclamation4.ForeColor = System.Drawing.Color.Red; - this.exclamation4.Location = new System.Drawing.Point(538, 611); - this.exclamation4.Name = "exclamation4"; - this.exclamation4.Size = new System.Drawing.Size(23, 29); - this.exclamation4.TabIndex = 17; - this.exclamation4.Text = "!"; - this.exclamation4.Visible = false; - // - // startTextBox4 - // - this.startTextBox4.Enabled = false; - this.startTextBox4.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.startTextBox4.Location = new System.Drawing.Point(191, 615); - this.startTextBox4.Name = "startTextBox4"; - this.startTextBox4.Size = new System.Drawing.Size(163, 27); - this.startTextBox4.TabIndex = 15; - this.startTextBox4.Visible = false; - this.startTextBox4.AcceptsTabChanged += new System.EventHandler(this.startTextBox4_AcceptsTabChanged); - this.startTextBox4.TextChanged += new System.EventHandler(this.startTextBox4_TextChanged); - this.startTextBox4.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox4_KeyPress); - this.startTextBox4.MouseDown += new System.Windows.Forms.MouseEventHandler(this.startTextBox4_MouseDown); - // - // endTextBox4 - // - this.endTextBox4.Enabled = false; - this.endTextBox4.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.endTextBox4.Location = new System.Drawing.Point(373, 615); - this.endTextBox4.Name = "endTextBox4"; - this.endTextBox4.Size = new System.Drawing.Size(163, 27); - this.endTextBox4.TabIndex = 16; - this.endTextBox4.Visible = false; - this.endTextBox4.AcceptsTabChanged += new System.EventHandler(this.endTextBox4_AcceptsTabChanged); - this.endTextBox4.TextChanged += new System.EventHandler(this.endTextBox4_TextChanged); - this.endTextBox4.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox4_KeyPress); - this.endTextBox4.MouseDown += new System.Windows.Forms.MouseEventHandler(this.endTextBox4_MouseDown); - // - // label4 - // - this.label4.AutoSize = true; - this.label4.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.label4.Location = new System.Drawing.Point(29, 618); - this.label4.Name = "label4"; - this.label4.Size = new System.Drawing.Size(126, 18); - this.label4.TabIndex = 14; - this.label4.Text = "Water Meter 4"; - this.label4.Visible = false; - // - // exclamation5 - // - this.exclamation5.AutoSize = true; - this.exclamation5.Font = new System.Drawing.Font("Verdana", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.exclamation5.ForeColor = System.Drawing.Color.Red; - this.exclamation5.Location = new System.Drawing.Point(538, 641); - this.exclamation5.Name = "exclamation5"; - this.exclamation5.Size = new System.Drawing.Size(23, 29); - this.exclamation5.TabIndex = 21; - this.exclamation5.Text = "!"; - this.exclamation5.Visible = false; - // - // startTextBox5 - // - this.startTextBox5.Enabled = false; - this.startTextBox5.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.startTextBox5.Location = new System.Drawing.Point(191, 645); - this.startTextBox5.Name = "startTextBox5"; - this.startTextBox5.Size = new System.Drawing.Size(163, 27); - this.startTextBox5.TabIndex = 19; - this.startTextBox5.Visible = false; - this.startTextBox5.AcceptsTabChanged += new System.EventHandler(this.startTextBox5_AcceptsTabChanged); - this.startTextBox5.TextChanged += new System.EventHandler(this.startTextBox5_TextChanged); - this.startTextBox5.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox5_KeyPress); - this.startTextBox5.MouseDown += new System.Windows.Forms.MouseEventHandler(this.startTextBox5_MouseDown); - // - // endTextBox5 - // - this.endTextBox5.Enabled = false; - this.endTextBox5.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.endTextBox5.Location = new System.Drawing.Point(373, 645); - this.endTextBox5.Name = "endTextBox5"; - this.endTextBox5.Size = new System.Drawing.Size(163, 27); - this.endTextBox5.TabIndex = 20; - this.endTextBox5.Visible = false; - this.endTextBox5.AcceptsTabChanged += new System.EventHandler(this.endTextBox5_AcceptsTabChanged); - this.endTextBox5.TextChanged += new System.EventHandler(this.endTextBox5_TextChanged); - this.endTextBox5.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox5_KeyPress); - this.endTextBox5.MouseDown += new System.Windows.Forms.MouseEventHandler(this.endTextBox5_MouseDown); - // - // label5 - // - this.label5.AutoSize = true; - this.label5.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.label5.Location = new System.Drawing.Point(29, 648); - this.label5.Name = "label5"; - this.label5.Size = new System.Drawing.Size(126, 18); - this.label5.TabIndex = 18; - this.label5.Text = "Water Meter 5"; - this.label5.Visible = false; - // - // exclamation6 - // - this.exclamation6.AutoSize = true; - this.exclamation6.Font = new System.Drawing.Font("Verdana", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.exclamation6.ForeColor = System.Drawing.Color.Red; - this.exclamation6.Location = new System.Drawing.Point(538, 671); - this.exclamation6.Name = "exclamation6"; - this.exclamation6.Size = new System.Drawing.Size(23, 29); - this.exclamation6.TabIndex = 25; - this.exclamation6.Text = "!"; - this.exclamation6.Visible = false; - // - // startTextBox6 - // - this.startTextBox6.Enabled = false; - this.startTextBox6.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.startTextBox6.Location = new System.Drawing.Point(191, 675); - this.startTextBox6.Name = "startTextBox6"; - this.startTextBox6.Size = new System.Drawing.Size(163, 27); - this.startTextBox6.TabIndex = 23; - this.startTextBox6.Visible = false; - this.startTextBox6.AcceptsTabChanged += new System.EventHandler(this.startTextBox6_AcceptsTabChanged); - this.startTextBox6.TextChanged += new System.EventHandler(this.startTextBox6_TextChanged); - this.startTextBox6.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox6_KeyPress); - this.startTextBox6.MouseDown += new System.Windows.Forms.MouseEventHandler(this.startTextBox6_MouseDown); - // - // endTextBox6 - // - this.endTextBox6.Enabled = false; - this.endTextBox6.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.endTextBox6.Location = new System.Drawing.Point(373, 675); - this.endTextBox6.Name = "endTextBox6"; - this.endTextBox6.Size = new System.Drawing.Size(163, 27); - this.endTextBox6.TabIndex = 24; - this.endTextBox6.Visible = false; - this.endTextBox6.AcceptsTabChanged += new System.EventHandler(this.endTextBox6_AcceptsTabChanged); - this.endTextBox6.TextChanged += new System.EventHandler(this.endTextBox6_TextChanged); - this.endTextBox6.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox6_KeyPress); - this.endTextBox6.MouseDown += new System.Windows.Forms.MouseEventHandler(this.endTextBox6_MouseDown); - // - // label6 - // - this.label6.AutoSize = true; - this.label6.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.label6.Location = new System.Drawing.Point(29, 678); - this.label6.Name = "label6"; - this.label6.Size = new System.Drawing.Size(126, 18); - this.label6.TabIndex = 22; - this.label6.Text = "Water Meter 6"; - this.label6.Visible = false; - // - // startLabel - // - this.startLabel.AutoSize = true; - this.startLabel.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.startLabel.Location = new System.Drawing.Point(237, 500); - this.startLabel.Name = "startLabel"; - this.startLabel.Size = new System.Drawing.Size(48, 18); - this.startLabel.TabIndex = 0; - this.startLabel.Text = "Start"; - // - // endLabel - // - this.endLabel.AutoSize = true; - this.endLabel.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.endLabel.Location = new System.Drawing.Point(423, 500); - this.endLabel.Name = "endLabel"; - this.endLabel.Size = new System.Drawing.Size(38, 18); - this.endLabel.TabIndex = 1; - this.endLabel.Text = "End"; - // - // label2 - // - this.label2.AutoSize = true; - this.label2.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.label2.Location = new System.Drawing.Point(29, 558); - this.label2.Name = "label2"; - this.label2.Size = new System.Drawing.Size(126, 18); - this.label2.TabIndex = 6; - this.label2.Text = "Water Meter 2"; - this.label2.Visible = false; - // - // endTextBox2 - // - this.endTextBox2.Enabled = false; - this.endTextBox2.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.endTextBox2.Location = new System.Drawing.Point(373, 555); - this.endTextBox2.Name = "endTextBox2"; - this.endTextBox2.Size = new System.Drawing.Size(163, 27); - this.endTextBox2.TabIndex = 8; - this.endTextBox2.Visible = false; - this.endTextBox2.AcceptsTabChanged += new System.EventHandler(this.endTextBox2_AcceptsTabChanged); - this.endTextBox2.TextChanged += new System.EventHandler(this.endTextBox2_TextChanged); - this.endTextBox2.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox2_KeyPress); - this.endTextBox2.MouseDown += new System.Windows.Forms.MouseEventHandler(this.endTextBox2_MouseDown); - // - // startTextBox2 - // - this.startTextBox2.Enabled = false; - this.startTextBox2.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.startTextBox2.Location = new System.Drawing.Point(191, 555); - this.startTextBox2.Name = "startTextBox2"; - this.startTextBox2.Size = new System.Drawing.Size(163, 27); - this.startTextBox2.TabIndex = 7; - this.startTextBox2.Visible = false; - this.startTextBox2.AcceptsTabChanged += new System.EventHandler(this.startTextBox2_AcceptsTabChanged); - this.startTextBox2.TextChanged += new System.EventHandler(this.startTextBox2_TextChanged); - this.startTextBox2.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox2_KeyPress); - this.startTextBox2.MouseDown += new System.Windows.Forms.MouseEventHandler(this.startTextBox2_MouseDown); - // - // exclamation2 - // - this.exclamation2.AutoSize = true; - this.exclamation2.Font = new System.Drawing.Font("Verdana", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.exclamation2.ForeColor = System.Drawing.Color.Red; - this.exclamation2.Location = new System.Drawing.Point(538, 551); - this.exclamation2.Name = "exclamation2"; - this.exclamation2.Size = new System.Drawing.Size(23, 29); - this.exclamation2.TabIndex = 9; - this.exclamation2.Text = "!"; - this.exclamation2.Visible = false; - // - // exclamation7 - // - this.exclamation7.AutoSize = true; - this.exclamation7.Font = new System.Drawing.Font("Verdana", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.exclamation7.ForeColor = System.Drawing.Color.Red; - this.exclamation7.Location = new System.Drawing.Point(538, 701); - this.exclamation7.Name = "exclamation7"; - this.exclamation7.Size = new System.Drawing.Size(23, 29); - this.exclamation7.TabIndex = 29; - this.exclamation7.Text = "!"; - this.exclamation7.Visible = false; - // - // startTextBox7 - // - this.startTextBox7.Enabled = false; - this.startTextBox7.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.startTextBox7.Location = new System.Drawing.Point(191, 705); - this.startTextBox7.Name = "startTextBox7"; - this.startTextBox7.Size = new System.Drawing.Size(163, 27); - this.startTextBox7.TabIndex = 27; - this.startTextBox7.Visible = false; - this.startTextBox7.AcceptsTabChanged += new System.EventHandler(this.startTextBox7_AcceptsTabChanged); - this.startTextBox7.TextChanged += new System.EventHandler(this.startTextBox7_TextChanged); - this.startTextBox7.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox7_KeyPress); - this.startTextBox7.MouseDown += new System.Windows.Forms.MouseEventHandler(this.startTextBox7_MouseDown); - // - // endTextBox7 - // - this.endTextBox7.Enabled = false; - this.endTextBox7.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.endTextBox7.Location = new System.Drawing.Point(373, 705); - this.endTextBox7.Name = "endTextBox7"; - this.endTextBox7.Size = new System.Drawing.Size(163, 27); - this.endTextBox7.TabIndex = 28; - this.endTextBox7.Visible = false; - this.endTextBox7.AcceptsTabChanged += new System.EventHandler(this.endTextBox7_AcceptsTabChanged); - this.endTextBox7.TextChanged += new System.EventHandler(this.endTextBox7_TextChanged); - this.endTextBox7.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox7_KeyPress); - this.endTextBox7.MouseDown += new System.Windows.Forms.MouseEventHandler(this.endTextBox7_MouseDown); - // - // label7 - // - this.label7.AutoSize = true; - this.label7.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.label7.Location = new System.Drawing.Point(29, 708); - this.label7.Name = "label7"; - this.label7.Size = new System.Drawing.Size(126, 18); - this.label7.TabIndex = 26; - this.label7.Text = "Water Meter 7"; - this.label7.Visible = false; - // - // exclamation8 - // - this.exclamation8.AutoSize = true; - this.exclamation8.Font = new System.Drawing.Font("Verdana", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.exclamation8.ForeColor = System.Drawing.Color.Red; - this.exclamation8.Location = new System.Drawing.Point(538, 731); - this.exclamation8.Name = "exclamation8"; - this.exclamation8.Size = new System.Drawing.Size(23, 29); - this.exclamation8.TabIndex = 33; - this.exclamation8.Text = "!"; - this.exclamation8.Visible = false; - // - // startTextBox8 - // - this.startTextBox8.Enabled = false; - this.startTextBox8.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.startTextBox8.Location = new System.Drawing.Point(191, 735); - this.startTextBox8.Name = "startTextBox8"; - this.startTextBox8.Size = new System.Drawing.Size(163, 27); - this.startTextBox8.TabIndex = 31; - this.startTextBox8.Visible = false; - this.startTextBox8.AcceptsTabChanged += new System.EventHandler(this.startTextBox8_AcceptsTabChanged); - this.startTextBox8.TextChanged += new System.EventHandler(this.startTextBox8_TextChanged); - this.startTextBox8.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox8_KeyPress); - this.startTextBox8.MouseDown += new System.Windows.Forms.MouseEventHandler(this.startTextBox8_MouseDown); - // - // endTextBox8 - // - this.endTextBox8.Enabled = false; - this.endTextBox8.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.endTextBox8.Location = new System.Drawing.Point(373, 735); - this.endTextBox8.Name = "endTextBox8"; - this.endTextBox8.Size = new System.Drawing.Size(163, 27); - this.endTextBox8.TabIndex = 32; - this.endTextBox8.Visible = false; - this.endTextBox8.AcceptsTabChanged += new System.EventHandler(this.endTextBox8_AcceptsTabChanged); - this.endTextBox8.TextChanged += new System.EventHandler(this.endTextBox8_TextChanged); - this.endTextBox8.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox8_KeyPress); - this.endTextBox8.MouseDown += new System.Windows.Forms.MouseEventHandler(this.endTextBox8_MouseDown); - // - // label8 - // - this.label8.AutoSize = true; - this.label8.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.label8.Location = new System.Drawing.Point(29, 738); - this.label8.Name = "label8"; - this.label8.Size = new System.Drawing.Size(126, 18); - this.label8.TabIndex = 30; - this.label8.Text = "Water Meter 8"; - this.label8.Visible = false; - // - // exclamation9 - // - this.exclamation9.AutoSize = true; - this.exclamation9.Font = new System.Drawing.Font("Verdana", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.exclamation9.ForeColor = System.Drawing.Color.Red; - this.exclamation9.Location = new System.Drawing.Point(538, 761); - this.exclamation9.Name = "exclamation9"; - this.exclamation9.Size = new System.Drawing.Size(23, 29); - this.exclamation9.TabIndex = 37; - this.exclamation9.Text = "!"; - this.exclamation9.Visible = false; - // - // startTextBox9 - // - this.startTextBox9.Enabled = false; - this.startTextBox9.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.startTextBox9.Location = new System.Drawing.Point(191, 765); - this.startTextBox9.Name = "startTextBox9"; - this.startTextBox9.Size = new System.Drawing.Size(163, 27); - this.startTextBox9.TabIndex = 35; - this.startTextBox9.Visible = false; - this.startTextBox9.AcceptsTabChanged += new System.EventHandler(this.startTextBox9_AcceptsTabChanged); - this.startTextBox9.TextChanged += new System.EventHandler(this.startTextBox9_TextChanged); - this.startTextBox9.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox9_KeyPress); - this.startTextBox9.MouseDown += new System.Windows.Forms.MouseEventHandler(this.startTextBox9_MouseDown); - // - // endTextBox9 - // - this.endTextBox9.Enabled = false; - this.endTextBox9.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.endTextBox9.Location = new System.Drawing.Point(373, 765); - this.endTextBox9.Name = "endTextBox9"; - this.endTextBox9.Size = new System.Drawing.Size(163, 27); - this.endTextBox9.TabIndex = 36; - this.endTextBox9.Visible = false; - this.endTextBox9.AcceptsTabChanged += new System.EventHandler(this.endTextBox9_AcceptsTabChanged); - this.endTextBox9.TextChanged += new System.EventHandler(this.endTextBox9_TextChanged); - this.endTextBox9.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox9_KeyPress); - this.endTextBox9.MouseDown += new System.Windows.Forms.MouseEventHandler(this.endTextBox9_MouseDown); - // - // label9 - // - this.label9.AutoSize = true; - this.label9.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.label9.Location = new System.Drawing.Point(29, 768); - this.label9.Name = "label9"; - this.label9.Size = new System.Drawing.Size(126, 18); - this.label9.TabIndex = 34; - this.label9.Text = "Water Meter 9"; - this.label9.Visible = false; - // - // exclamation10 - // - this.exclamation10.AutoSize = true; - this.exclamation10.Font = new System.Drawing.Font("Verdana", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.exclamation10.ForeColor = System.Drawing.Color.Red; - this.exclamation10.Location = new System.Drawing.Point(538, 791); - this.exclamation10.Name = "exclamation10"; - this.exclamation10.Size = new System.Drawing.Size(23, 29); - this.exclamation10.TabIndex = 41; - this.exclamation10.Text = "!"; - this.exclamation10.Visible = false; - // - // startTextBox10 - // - this.startTextBox10.Enabled = false; - this.startTextBox10.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.startTextBox10.Location = new System.Drawing.Point(191, 795); - this.startTextBox10.Name = "startTextBox10"; - this.startTextBox10.Size = new System.Drawing.Size(163, 27); - this.startTextBox10.TabIndex = 39; - this.startTextBox10.Visible = false; - this.startTextBox10.AcceptsTabChanged += new System.EventHandler(this.startTextBox10_AcceptsTabChanged); - this.startTextBox10.TextChanged += new System.EventHandler(this.startTextBox10_TextChanged); - this.startTextBox10.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox10_KeyPress); - this.startTextBox10.MouseDown += new System.Windows.Forms.MouseEventHandler(this.startTextBox10_MouseDown); - // - // endTextBox10 - // - this.endTextBox10.Enabled = false; - this.endTextBox10.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.endTextBox10.Location = new System.Drawing.Point(373, 795); - this.endTextBox10.Name = "endTextBox10"; - this.endTextBox10.Size = new System.Drawing.Size(163, 27); - this.endTextBox10.TabIndex = 40; - this.endTextBox10.Visible = false; - this.endTextBox10.AcceptsTabChanged += new System.EventHandler(this.endTextBox10_AcceptsTabChanged); - this.endTextBox10.TextChanged += new System.EventHandler(this.endTextBox10_TextChanged); - this.endTextBox10.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox10_KeyPress); - this.endTextBox10.MouseDown += new System.Windows.Forms.MouseEventHandler(this.endTextBox10_MouseDown); - // - // label10 - // - this.label10.AutoSize = true; - this.label10.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.label10.Location = new System.Drawing.Point(29, 798); - this.label10.Name = "label10"; - this.label10.Size = new System.Drawing.Size(136, 18); - this.label10.TabIndex = 38; - this.label10.Text = "Water Meter 10"; - this.label10.Visible = false; - // - // exclamation11 - // - this.exclamation11.AutoSize = true; - this.exclamation11.Font = new System.Drawing.Font("Verdana", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.exclamation11.ForeColor = System.Drawing.Color.Red; - this.exclamation11.Location = new System.Drawing.Point(538, 821); - this.exclamation11.Name = "exclamation11"; - this.exclamation11.Size = new System.Drawing.Size(23, 29); - this.exclamation11.TabIndex = 45; - this.exclamation11.Text = "!"; - this.exclamation11.Visible = false; - // - // startTextBox11 - // - this.startTextBox11.Enabled = false; - this.startTextBox11.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.startTextBox11.Location = new System.Drawing.Point(191, 825); - this.startTextBox11.Name = "startTextBox11"; - this.startTextBox11.Size = new System.Drawing.Size(163, 27); - this.startTextBox11.TabIndex = 43; - this.startTextBox11.Visible = false; - this.startTextBox11.AcceptsTabChanged += new System.EventHandler(this.startTextBox11_AcceptsTabChanged); - this.startTextBox11.TextChanged += new System.EventHandler(this.startTextBox11_TextChanged); - this.startTextBox11.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox11_KeyPress); - this.startTextBox11.MouseDown += new System.Windows.Forms.MouseEventHandler(this.startTextBox11_MouseDown); - // - // endTextBox11 - // - this.endTextBox11.Enabled = false; - this.endTextBox11.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.endTextBox11.Location = new System.Drawing.Point(373, 825); - this.endTextBox11.Name = "endTextBox11"; - this.endTextBox11.Size = new System.Drawing.Size(163, 27); - this.endTextBox11.TabIndex = 44; - this.endTextBox11.Visible = false; - this.endTextBox11.AcceptsTabChanged += new System.EventHandler(this.endTextBox11_AcceptsTabChanged); - this.endTextBox11.TextChanged += new System.EventHandler(this.endTextBox11_TextChanged); - this.endTextBox11.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox11_KeyPress); - this.endTextBox11.MouseDown += new System.Windows.Forms.MouseEventHandler(this.endTextBox11_MouseDown); - // - // label11 - // - this.label11.AutoSize = true; - this.label11.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.label11.Location = new System.Drawing.Point(29, 828); - this.label11.Name = "label11"; - this.label11.Size = new System.Drawing.Size(136, 18); - this.label11.TabIndex = 42; - this.label11.Text = "Water Meter 11"; - this.label11.Visible = false; - // - // exclamation12 - // - this.exclamation12.AutoSize = true; - this.exclamation12.Font = new System.Drawing.Font("Verdana", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.exclamation12.ForeColor = System.Drawing.Color.Red; - this.exclamation12.Location = new System.Drawing.Point(538, 851); - this.exclamation12.Name = "exclamation12"; - this.exclamation12.Size = new System.Drawing.Size(23, 29); - this.exclamation12.TabIndex = 49; - this.exclamation12.Text = "!"; - this.exclamation12.Visible = false; - // - // startTextBox12 - // - this.startTextBox12.Enabled = false; - this.startTextBox12.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.startTextBox12.Location = new System.Drawing.Point(191, 855); - this.startTextBox12.Name = "startTextBox12"; - this.startTextBox12.Size = new System.Drawing.Size(163, 27); - this.startTextBox12.TabIndex = 47; - this.startTextBox12.Visible = false; - this.startTextBox12.AcceptsTabChanged += new System.EventHandler(this.startTextBox12_AcceptsTabChanged); - this.startTextBox12.TextChanged += new System.EventHandler(this.startTextBox12_TextChanged); - this.startTextBox12.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox12_KeyPress); - this.startTextBox12.MouseDown += new System.Windows.Forms.MouseEventHandler(this.startTextBox12_MouseDown); - // - // endTextBox12 - // - this.endTextBox12.Enabled = false; - this.endTextBox12.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.endTextBox12.Location = new System.Drawing.Point(373, 855); - this.endTextBox12.Name = "endTextBox12"; - this.endTextBox12.Size = new System.Drawing.Size(163, 27); - this.endTextBox12.TabIndex = 48; - this.endTextBox12.Visible = false; - this.endTextBox12.AcceptsTabChanged += new System.EventHandler(this.endTextBox12_AcceptsTabChanged); - this.endTextBox12.TextChanged += new System.EventHandler(this.endTextBox12_TextChanged); - this.endTextBox12.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox12_KeyPress); - this.endTextBox12.MouseDown += new System.Windows.Forms.MouseEventHandler(this.endTextBox12_MouseDown); - // - // label12 - // - this.label12.AutoSize = true; - this.label12.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.label12.Location = new System.Drawing.Point(29, 858); - this.label12.Name = "label12"; - this.label12.Size = new System.Drawing.Size(136, 18); - this.label12.TabIndex = 46; - this.label12.Text = "Water Meter 12"; - this.label12.Visible = false; - // - // exclamation24 - // - this.exclamation24.AutoSize = true; - this.exclamation24.Font = new System.Drawing.Font("Verdana", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.exclamation24.ForeColor = System.Drawing.Color.Red; - this.exclamation24.Location = new System.Drawing.Point(1107, 851); - this.exclamation24.Name = "exclamation24"; - this.exclamation24.Size = new System.Drawing.Size(23, 29); - this.exclamation24.TabIndex = 99; - this.exclamation24.Text = "!"; - this.exclamation24.Visible = false; - // - // startTextBox24 - // - this.startTextBox24.Enabled = false; - this.startTextBox24.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.startTextBox24.Location = new System.Drawing.Point(760, 855); - this.startTextBox24.Name = "startTextBox24"; - this.startTextBox24.Size = new System.Drawing.Size(163, 27); - this.startTextBox24.TabIndex = 97; - this.startTextBox24.Visible = false; - this.startTextBox24.AcceptsTabChanged += new System.EventHandler(this.startTextBox24_AcceptsTabChanged); - this.startTextBox24.TextChanged += new System.EventHandler(this.startTextBox24_TextChanged); - this.startTextBox24.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox24_KeyPress); - this.startTextBox24.MouseDown += new System.Windows.Forms.MouseEventHandler(this.startTextBox24_MouseDown); - // - // endTextBox24 - // - this.endTextBox24.Enabled = false; - this.endTextBox24.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.endTextBox24.Location = new System.Drawing.Point(942, 855); - this.endTextBox24.Name = "endTextBox24"; - this.endTextBox24.Size = new System.Drawing.Size(163, 27); - this.endTextBox24.TabIndex = 98; - this.endTextBox24.Visible = false; - this.endTextBox24.AcceptsTabChanged += new System.EventHandler(this.endTextBox24_AcceptsTabChanged); - this.endTextBox24.TextChanged += new System.EventHandler(this.endTextBox24_TextChanged); - this.endTextBox24.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox24_KeyPress); - this.endTextBox24.MouseDown += new System.Windows.Forms.MouseEventHandler(this.endTextBox24_MouseDown); - // - // label24 - // - this.label24.AutoSize = true; - this.label24.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.label24.Location = new System.Drawing.Point(598, 858); - this.label24.Name = "label24"; - this.label24.Size = new System.Drawing.Size(136, 18); - this.label24.TabIndex = 96; - this.label24.Text = "Water Meter 24"; - this.label24.Visible = false; - // - // exclamation23 - // - this.exclamation23.AutoSize = true; - this.exclamation23.Font = new System.Drawing.Font("Verdana", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.exclamation23.ForeColor = System.Drawing.Color.Red; - this.exclamation23.Location = new System.Drawing.Point(1107, 821); - this.exclamation23.Name = "exclamation23"; - this.exclamation23.Size = new System.Drawing.Size(23, 29); - this.exclamation23.TabIndex = 95; - this.exclamation23.Text = "!"; - this.exclamation23.Visible = false; - // - // startTextBox23 - // - this.startTextBox23.Enabled = false; - this.startTextBox23.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.startTextBox23.Location = new System.Drawing.Point(760, 825); - this.startTextBox23.Name = "startTextBox23"; - this.startTextBox23.Size = new System.Drawing.Size(163, 27); - this.startTextBox23.TabIndex = 93; - this.startTextBox23.Visible = false; - this.startTextBox23.AcceptsTabChanged += new System.EventHandler(this.startTextBox23_AcceptsTabChanged); - this.startTextBox23.TextChanged += new System.EventHandler(this.startTextBox23_TextChanged); - this.startTextBox23.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox23_KeyPress); - this.startTextBox23.MouseDown += new System.Windows.Forms.MouseEventHandler(this.startTextBox23_MouseDown); - // - // endTextBox23 - // - this.endTextBox23.Enabled = false; - this.endTextBox23.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.endTextBox23.Location = new System.Drawing.Point(942, 825); - this.endTextBox23.Name = "endTextBox23"; - this.endTextBox23.Size = new System.Drawing.Size(163, 27); - this.endTextBox23.TabIndex = 94; - this.endTextBox23.Visible = false; - this.endTextBox23.AcceptsTabChanged += new System.EventHandler(this.endTextBox23_AcceptsTabChanged); - this.endTextBox23.TextChanged += new System.EventHandler(this.endTextBox23_TextChanged); - this.endTextBox23.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox23_KeyPress); - this.endTextBox23.MouseDown += new System.Windows.Forms.MouseEventHandler(this.endTextBox23_MouseDown); - // - // label23 - // - this.label23.AutoSize = true; - this.label23.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.label23.Location = new System.Drawing.Point(598, 828); - this.label23.Name = "label23"; - this.label23.Size = new System.Drawing.Size(136, 18); - this.label23.TabIndex = 92; - this.label23.Text = "Water Meter 23"; - this.label23.Visible = false; - // - // exclamation22 - // - this.exclamation22.AutoSize = true; - this.exclamation22.Font = new System.Drawing.Font("Verdana", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.exclamation22.ForeColor = System.Drawing.Color.Red; - this.exclamation22.Location = new System.Drawing.Point(1107, 791); - this.exclamation22.Name = "exclamation22"; - this.exclamation22.Size = new System.Drawing.Size(23, 29); - this.exclamation22.TabIndex = 91; - this.exclamation22.Text = "!"; - this.exclamation22.Visible = false; - // - // startTextBox22 - // - this.startTextBox22.Enabled = false; - this.startTextBox22.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.startTextBox22.Location = new System.Drawing.Point(760, 795); - this.startTextBox22.Name = "startTextBox22"; - this.startTextBox22.Size = new System.Drawing.Size(163, 27); - this.startTextBox22.TabIndex = 89; - this.startTextBox22.Visible = false; - this.startTextBox22.AcceptsTabChanged += new System.EventHandler(this.startTextBox22_AcceptsTabChanged); - this.startTextBox22.TextChanged += new System.EventHandler(this.startTextBox22_TextChanged); - this.startTextBox22.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox22_KeyPress); - this.startTextBox22.MouseDown += new System.Windows.Forms.MouseEventHandler(this.startTextBox22_MouseDown); - // - // endTextBox22 - // - this.endTextBox22.Enabled = false; - this.endTextBox22.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.endTextBox22.Location = new System.Drawing.Point(942, 795); - this.endTextBox22.Name = "endTextBox22"; - this.endTextBox22.Size = new System.Drawing.Size(163, 27); - this.endTextBox22.TabIndex = 90; - this.endTextBox22.Visible = false; - this.endTextBox22.AcceptsTabChanged += new System.EventHandler(this.endTextBox22_AcceptsTabChanged); - this.endTextBox22.TextChanged += new System.EventHandler(this.endTextBox22_TextChanged); - this.endTextBox22.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox22_KeyPress); - this.endTextBox22.MouseDown += new System.Windows.Forms.MouseEventHandler(this.endTextBox22_MouseDown); - // - // label22 - // - this.label22.AutoSize = true; - this.label22.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.label22.Location = new System.Drawing.Point(598, 798); - this.label22.Name = "label22"; - this.label22.Size = new System.Drawing.Size(136, 18); - this.label22.TabIndex = 88; - this.label22.Text = "Water Meter 22"; - this.label22.Visible = false; - // - // exclamation21 - // - this.exclamation21.AutoSize = true; - this.exclamation21.Font = new System.Drawing.Font("Verdana", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.exclamation21.ForeColor = System.Drawing.Color.Red; - this.exclamation21.Location = new System.Drawing.Point(1107, 761); - this.exclamation21.Name = "exclamation21"; - this.exclamation21.Size = new System.Drawing.Size(23, 29); - this.exclamation21.TabIndex = 87; - this.exclamation21.Text = "!"; - this.exclamation21.Visible = false; - // - // startTextBox21 - // - this.startTextBox21.Enabled = false; - this.startTextBox21.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.startTextBox21.Location = new System.Drawing.Point(760, 765); - this.startTextBox21.Name = "startTextBox21"; - this.startTextBox21.Size = new System.Drawing.Size(163, 27); - this.startTextBox21.TabIndex = 85; - this.startTextBox21.Visible = false; - this.startTextBox21.AcceptsTabChanged += new System.EventHandler(this.startTextBox21_AcceptsTabChanged); - this.startTextBox21.TextChanged += new System.EventHandler(this.startTextBox21_TextChanged); - this.startTextBox21.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox21_KeyPress); - this.startTextBox21.MouseDown += new System.Windows.Forms.MouseEventHandler(this.startTextBox21_MouseDown); - // - // endTextBox21 - // - this.endTextBox21.Enabled = false; - this.endTextBox21.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.endTextBox21.Location = new System.Drawing.Point(942, 765); - this.endTextBox21.Name = "endTextBox21"; - this.endTextBox21.Size = new System.Drawing.Size(163, 27); - this.endTextBox21.TabIndex = 86; - this.endTextBox21.Visible = false; - this.endTextBox21.AcceptsTabChanged += new System.EventHandler(this.endTextBox21_AcceptsTabChanged); - this.endTextBox21.TextChanged += new System.EventHandler(this.endTextBox21_TextChanged); - this.endTextBox21.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox21_KeyPress); - this.endTextBox21.MouseDown += new System.Windows.Forms.MouseEventHandler(this.endTextBox21_MouseDown); - // - // label21 - // - this.label21.AutoSize = true; - this.label21.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.label21.Location = new System.Drawing.Point(598, 768); - this.label21.Name = "label21"; - this.label21.Size = new System.Drawing.Size(136, 18); - this.label21.TabIndex = 84; - this.label21.Text = "Water Meter 21"; - this.label21.Visible = false; - // - // exclamation20 - // - this.exclamation20.AutoSize = true; - this.exclamation20.Font = new System.Drawing.Font("Verdana", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.exclamation20.ForeColor = System.Drawing.Color.Red; - this.exclamation20.Location = new System.Drawing.Point(1107, 731); - this.exclamation20.Name = "exclamation20"; - this.exclamation20.Size = new System.Drawing.Size(23, 29); - this.exclamation20.TabIndex = 83; - this.exclamation20.Text = "!"; - this.exclamation20.Visible = false; - // - // startTextBox20 - // - this.startTextBox20.Enabled = false; - this.startTextBox20.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.startTextBox20.Location = new System.Drawing.Point(760, 735); - this.startTextBox20.Name = "startTextBox20"; - this.startTextBox20.Size = new System.Drawing.Size(163, 27); - this.startTextBox20.TabIndex = 81; - this.startTextBox20.Visible = false; - this.startTextBox20.AcceptsTabChanged += new System.EventHandler(this.startTextBox20_AcceptsTabChanged); - this.startTextBox20.TextChanged += new System.EventHandler(this.startTextBox20_TextChanged); - this.startTextBox20.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox20_KeyPress); - this.startTextBox20.MouseDown += new System.Windows.Forms.MouseEventHandler(this.startTextBox20_MouseDown); - // - // endTextBox20 - // - this.endTextBox20.Enabled = false; - this.endTextBox20.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.endTextBox20.Location = new System.Drawing.Point(942, 735); - this.endTextBox20.Name = "endTextBox20"; - this.endTextBox20.Size = new System.Drawing.Size(163, 27); - this.endTextBox20.TabIndex = 82; - this.endTextBox20.Visible = false; - this.endTextBox20.AcceptsTabChanged += new System.EventHandler(this.endTextBox20_AcceptsTabChanged); - this.endTextBox20.TextChanged += new System.EventHandler(this.endTextBox20_TextChanged); - this.endTextBox20.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox20_KeyPress); - this.endTextBox20.MouseDown += new System.Windows.Forms.MouseEventHandler(this.endTextBox20_MouseDown); - // - // label20 - // - this.label20.AutoSize = true; - this.label20.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.label20.Location = new System.Drawing.Point(598, 738); - this.label20.Name = "label20"; - this.label20.Size = new System.Drawing.Size(136, 18); - this.label20.TabIndex = 80; - this.label20.Text = "Water Meter 20"; - this.label20.Visible = false; - // - // exclamation19 - // - this.exclamation19.AutoSize = true; - this.exclamation19.Font = new System.Drawing.Font("Verdana", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.exclamation19.ForeColor = System.Drawing.Color.Red; - this.exclamation19.Location = new System.Drawing.Point(1107, 701); - this.exclamation19.Name = "exclamation19"; - this.exclamation19.Size = new System.Drawing.Size(23, 29); - this.exclamation19.TabIndex = 79; - this.exclamation19.Text = "!"; - this.exclamation19.Visible = false; - // - // startTextBox19 - // - this.startTextBox19.Enabled = false; - this.startTextBox19.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.startTextBox19.Location = new System.Drawing.Point(760, 705); - this.startTextBox19.Name = "startTextBox19"; - this.startTextBox19.Size = new System.Drawing.Size(163, 27); - this.startTextBox19.TabIndex = 77; - this.startTextBox19.Visible = false; - this.startTextBox19.AcceptsTabChanged += new System.EventHandler(this.startTextBox19_AcceptsTabChanged); - this.startTextBox19.TextChanged += new System.EventHandler(this.startTextBox19_TextChanged); - this.startTextBox19.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox19_KeyPress); - this.startTextBox19.MouseDown += new System.Windows.Forms.MouseEventHandler(this.startTextBox19_MouseDown); - // - // endTextBox19 - // - this.endTextBox19.Enabled = false; - this.endTextBox19.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.endTextBox19.Location = new System.Drawing.Point(942, 705); - this.endTextBox19.Name = "endTextBox19"; - this.endTextBox19.Size = new System.Drawing.Size(163, 27); - this.endTextBox19.TabIndex = 78; - this.endTextBox19.Visible = false; - this.endTextBox19.AcceptsTabChanged += new System.EventHandler(this.endTextBox19_AcceptsTabChanged); - this.endTextBox19.TextChanged += new System.EventHandler(this.endTextBox19_TextChanged); - this.endTextBox19.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox19_KeyPress); - this.endTextBox19.MouseDown += new System.Windows.Forms.MouseEventHandler(this.endTextBox19_MouseDown); - // - // label19 - // - this.label19.AutoSize = true; - this.label19.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.label19.Location = new System.Drawing.Point(598, 708); - this.label19.Name = "label19"; - this.label19.Size = new System.Drawing.Size(136, 18); - this.label19.TabIndex = 76; - this.label19.Text = "Water Meter 19"; - this.label19.Visible = false; - // - // exclamation18 - // - this.exclamation18.AutoSize = true; - this.exclamation18.Font = new System.Drawing.Font("Verdana", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.exclamation18.ForeColor = System.Drawing.Color.Red; - this.exclamation18.Location = new System.Drawing.Point(1107, 671); - this.exclamation18.Name = "exclamation18"; - this.exclamation18.Size = new System.Drawing.Size(23, 29); - this.exclamation18.TabIndex = 75; - this.exclamation18.Text = "!"; - this.exclamation18.Visible = false; - // - // exclamation17 - // - this.exclamation17.AutoSize = true; - this.exclamation17.Font = new System.Drawing.Font("Verdana", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.exclamation17.ForeColor = System.Drawing.Color.Red; - this.exclamation17.Location = new System.Drawing.Point(1107, 641); - this.exclamation17.Name = "exclamation17"; - this.exclamation17.Size = new System.Drawing.Size(23, 29); - this.exclamation17.TabIndex = 71; - this.exclamation17.Text = "!"; - this.exclamation17.Visible = false; - // - // startTextBox18 - // - this.startTextBox18.Enabled = false; - this.startTextBox18.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.startTextBox18.Location = new System.Drawing.Point(760, 675); - this.startTextBox18.Name = "startTextBox18"; - this.startTextBox18.Size = new System.Drawing.Size(163, 27); - this.startTextBox18.TabIndex = 73; - this.startTextBox18.Visible = false; - this.startTextBox18.AcceptsTabChanged += new System.EventHandler(this.startTextBox18_AcceptsTabChanged); - this.startTextBox18.TextChanged += new System.EventHandler(this.startTextBox18_TextChanged); - this.startTextBox18.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox18_KeyPress); - this.startTextBox18.MouseDown += new System.Windows.Forms.MouseEventHandler(this.startTextBox18_MouseDown); - // - // exclamation16 - // - this.exclamation16.AutoSize = true; - this.exclamation16.Font = new System.Drawing.Font("Verdana", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.exclamation16.ForeColor = System.Drawing.Color.Red; - this.exclamation16.Location = new System.Drawing.Point(1107, 611); - this.exclamation16.Name = "exclamation16"; - this.exclamation16.Size = new System.Drawing.Size(23, 29); - this.exclamation16.TabIndex = 67; - this.exclamation16.Text = "!"; - this.exclamation16.Visible = false; - // - // endTextBox18 - // - this.endTextBox18.Enabled = false; - this.endTextBox18.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.endTextBox18.Location = new System.Drawing.Point(942, 675); - this.endTextBox18.Name = "endTextBox18"; - this.endTextBox18.Size = new System.Drawing.Size(163, 27); - this.endTextBox18.TabIndex = 74; - this.endTextBox18.Visible = false; - this.endTextBox18.AcceptsTabChanged += new System.EventHandler(this.endTextBox18_AcceptsTabChanged); - this.endTextBox18.TextChanged += new System.EventHandler(this.endTextBox18_TextChanged); - this.endTextBox18.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox18_KeyPress); - this.endTextBox18.MouseDown += new System.Windows.Forms.MouseEventHandler(this.endTextBox18_MouseDown); - // - // label18 - // - this.label18.AutoSize = true; - this.label18.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.label18.Location = new System.Drawing.Point(598, 678); - this.label18.Name = "label18"; - this.label18.Size = new System.Drawing.Size(136, 18); - this.label18.TabIndex = 72; - this.label18.Text = "Water Meter 18"; - this.label18.Visible = false; - // - // startTextBox17 - // - this.startTextBox17.Enabled = false; - this.startTextBox17.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.startTextBox17.Location = new System.Drawing.Point(760, 645); - this.startTextBox17.Name = "startTextBox17"; - this.startTextBox17.Size = new System.Drawing.Size(163, 27); - this.startTextBox17.TabIndex = 69; - this.startTextBox17.Visible = false; - this.startTextBox17.AcceptsTabChanged += new System.EventHandler(this.startTextBox17_AcceptsTabChanged); - this.startTextBox17.TextChanged += new System.EventHandler(this.startTextBox17_TextChanged); - this.startTextBox17.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox17_KeyPress); - this.startTextBox17.MouseDown += new System.Windows.Forms.MouseEventHandler(this.startTextBox17_MouseDown); - // - // exclamation15 - // - this.exclamation15.AutoSize = true; - this.exclamation15.Font = new System.Drawing.Font("Verdana", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.exclamation15.ForeColor = System.Drawing.Color.Red; - this.exclamation15.Location = new System.Drawing.Point(1107, 581); - this.exclamation15.Name = "exclamation15"; - this.exclamation15.Size = new System.Drawing.Size(23, 29); - this.exclamation15.TabIndex = 63; - this.exclamation15.Text = "!"; - this.exclamation15.Visible = false; - // - // endTextBox17 - // - this.endTextBox17.Enabled = false; - this.endTextBox17.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.endTextBox17.Location = new System.Drawing.Point(942, 645); - this.endTextBox17.Name = "endTextBox17"; - this.endTextBox17.Size = new System.Drawing.Size(163, 27); - this.endTextBox17.TabIndex = 70; - this.endTextBox17.Visible = false; - this.endTextBox17.AcceptsTabChanged += new System.EventHandler(this.endTextBox17_AcceptsTabChanged); - this.endTextBox17.TextChanged += new System.EventHandler(this.endTextBox17_TextChanged); - this.endTextBox17.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox17_KeyPress); - this.endTextBox17.MouseDown += new System.Windows.Forms.MouseEventHandler(this.endTextBox17_MouseDown); - // - // label17 - // - this.label17.AutoSize = true; - this.label17.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.label17.Location = new System.Drawing.Point(598, 648); - this.label17.Name = "label17"; - this.label17.Size = new System.Drawing.Size(136, 18); - this.label17.TabIndex = 68; - this.label17.Text = "Water Meter 17"; - this.label17.Visible = false; - // - // startTextBox16 - // - this.startTextBox16.Enabled = false; - this.startTextBox16.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.startTextBox16.Location = new System.Drawing.Point(760, 615); - this.startTextBox16.Name = "startTextBox16"; - this.startTextBox16.Size = new System.Drawing.Size(163, 27); - this.startTextBox16.TabIndex = 65; - this.startTextBox16.Visible = false; - this.startTextBox16.AcceptsTabChanged += new System.EventHandler(this.startTextBox16_AcceptsTabChanged); - this.startTextBox16.TextChanged += new System.EventHandler(this.startTextBox16_TextChanged); - this.startTextBox16.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox16_KeyPress); - this.startTextBox16.MouseDown += new System.Windows.Forms.MouseEventHandler(this.startTextBox16_MouseDown); - // - // exclamation14 - // - this.exclamation14.AutoSize = true; - this.exclamation14.Font = new System.Drawing.Font("Verdana", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.exclamation14.ForeColor = System.Drawing.Color.Red; - this.exclamation14.Location = new System.Drawing.Point(1107, 551); - this.exclamation14.Name = "exclamation14"; - this.exclamation14.Size = new System.Drawing.Size(23, 29); - this.exclamation14.TabIndex = 59; - this.exclamation14.Text = "!"; - this.exclamation14.Visible = false; - // - // endTextBox16 - // - this.endTextBox16.Enabled = false; - this.endTextBox16.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.endTextBox16.Location = new System.Drawing.Point(942, 615); - this.endTextBox16.Name = "endTextBox16"; - this.endTextBox16.Size = new System.Drawing.Size(163, 27); - this.endTextBox16.TabIndex = 66; - this.endTextBox16.Visible = false; - this.endTextBox16.AcceptsTabChanged += new System.EventHandler(this.endTextBox16_AcceptsTabChanged); - this.endTextBox16.TextChanged += new System.EventHandler(this.endTextBox16_TextChanged); - this.endTextBox16.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox16_KeyPress); - this.endTextBox16.MouseDown += new System.Windows.Forms.MouseEventHandler(this.endTextBox16_MouseDown); - // - // label16 - // - this.label16.AutoSize = true; - this.label16.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.label16.Location = new System.Drawing.Point(598, 618); - this.label16.Name = "label16"; - this.label16.Size = new System.Drawing.Size(136, 18); - this.label16.TabIndex = 64; - this.label16.Text = "Water Meter 16"; - this.label16.Visible = false; - // - // startTextBox15 - // - this.startTextBox15.Enabled = false; - this.startTextBox15.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.startTextBox15.Location = new System.Drawing.Point(760, 585); - this.startTextBox15.Name = "startTextBox15"; - this.startTextBox15.Size = new System.Drawing.Size(163, 27); - this.startTextBox15.TabIndex = 61; - this.startTextBox15.Visible = false; - this.startTextBox15.AcceptsTabChanged += new System.EventHandler(this.startTextBox15_AcceptsTabChanged); - this.startTextBox15.TextChanged += new System.EventHandler(this.startTextBox15_TextChanged); - this.startTextBox15.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox15_KeyPress); - this.startTextBox15.MouseDown += new System.Windows.Forms.MouseEventHandler(this.startTextBox15_MouseDown); - // - // exclamation13 - // - this.exclamation13.AutoSize = true; - this.exclamation13.Font = new System.Drawing.Font("Verdana", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.exclamation13.ForeColor = System.Drawing.Color.Red; - this.exclamation13.Location = new System.Drawing.Point(1107, 521); - this.exclamation13.Name = "exclamation13"; - this.exclamation13.Size = new System.Drawing.Size(23, 29); - this.exclamation13.TabIndex = 55; - this.exclamation13.Text = "!"; - this.exclamation13.Visible = false; - // - // endTextBox15 - // - this.endTextBox15.Enabled = false; - this.endTextBox15.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.endTextBox15.Location = new System.Drawing.Point(942, 585); - this.endTextBox15.Name = "endTextBox15"; - this.endTextBox15.Size = new System.Drawing.Size(163, 27); - this.endTextBox15.TabIndex = 62; - this.endTextBox15.Visible = false; - this.endTextBox15.AcceptsTabChanged += new System.EventHandler(this.endTextBox15_AcceptsTabChanged); - this.endTextBox15.TextChanged += new System.EventHandler(this.endTextBox15_TextChanged); - this.endTextBox15.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox15_KeyPress); - this.endTextBox15.MouseDown += new System.Windows.Forms.MouseEventHandler(this.endTextBox15_MouseDown); - // - // label15 - // - this.label15.AutoSize = true; - this.label15.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.label15.Location = new System.Drawing.Point(598, 588); - this.label15.Name = "label15"; - this.label15.Size = new System.Drawing.Size(136, 18); - this.label15.TabIndex = 60; - this.label15.Text = "Water Meter 15"; - this.label15.Visible = false; - // - // startTextBox14 - // - this.startTextBox14.Enabled = false; - this.startTextBox14.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.startTextBox14.Location = new System.Drawing.Point(760, 555); - this.startTextBox14.Name = "startTextBox14"; - this.startTextBox14.Size = new System.Drawing.Size(163, 27); - this.startTextBox14.TabIndex = 57; - this.startTextBox14.Visible = false; - this.startTextBox14.AcceptsTabChanged += new System.EventHandler(this.startTextBox14_AcceptsTabChanged); - this.startTextBox14.TextChanged += new System.EventHandler(this.startTextBox14_TextChanged); - this.startTextBox14.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox14_KeyPress); - this.startTextBox14.MouseDown += new System.Windows.Forms.MouseEventHandler(this.startTextBox14_MouseDown); - // - // endLabel2 - // - this.endLabel2.AutoSize = true; - this.endLabel2.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.endLabel2.Location = new System.Drawing.Point(992, 500); - this.endLabel2.Name = "endLabel2"; - this.endLabel2.Size = new System.Drawing.Size(38, 18); - this.endLabel2.TabIndex = 51; - this.endLabel2.Text = "End"; - // - // endTextBox14 - // - this.endTextBox14.Enabled = false; - this.endTextBox14.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.endTextBox14.Location = new System.Drawing.Point(942, 555); - this.endTextBox14.Name = "endTextBox14"; - this.endTextBox14.Size = new System.Drawing.Size(163, 27); - this.endTextBox14.TabIndex = 58; - this.endTextBox14.Visible = false; - this.endTextBox14.AcceptsTabChanged += new System.EventHandler(this.endTextBox14_AcceptsTabChanged); - this.endTextBox14.TextChanged += new System.EventHandler(this.endTextBox14_TextChanged); - this.endTextBox14.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox14_KeyPress); - this.endTextBox14.MouseDown += new System.Windows.Forms.MouseEventHandler(this.endTextBox14_MouseDown); - // - // label14 - // - this.label14.AutoSize = true; - this.label14.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.label14.Location = new System.Drawing.Point(598, 558); - this.label14.Name = "label14"; - this.label14.Size = new System.Drawing.Size(136, 18); - this.label14.TabIndex = 56; - this.label14.Text = "Water Meter 14"; - this.label14.Visible = false; - // - // startTextBox13 - // - this.startTextBox13.Enabled = false; - this.startTextBox13.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.startTextBox13.Location = new System.Drawing.Point(760, 525); - this.startTextBox13.Name = "startTextBox13"; - this.startTextBox13.Size = new System.Drawing.Size(163, 27); - this.startTextBox13.TabIndex = 53; - this.startTextBox13.Visible = false; - this.startTextBox13.AcceptsTabChanged += new System.EventHandler(this.startTextBox13_AcceptsTabChanged); - this.startTextBox13.TextChanged += new System.EventHandler(this.startTextBox13_TextChanged); - this.startTextBox13.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox13_KeyPress); - this.startTextBox13.MouseDown += new System.Windows.Forms.MouseEventHandler(this.startTextBox13_MouseDown); - // - // startLabel2 - // - this.startLabel2.AutoSize = true; - this.startLabel2.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.startLabel2.Location = new System.Drawing.Point(806, 500); - this.startLabel2.Name = "startLabel2"; - this.startLabel2.Size = new System.Drawing.Size(48, 18); - this.startLabel2.TabIndex = 50; - this.startLabel2.Text = "Start"; - // - // endTextBox13 - // - this.endTextBox13.Enabled = false; - this.endTextBox13.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.endTextBox13.Location = new System.Drawing.Point(942, 525); - this.endTextBox13.Name = "endTextBox13"; - this.endTextBox13.Size = new System.Drawing.Size(163, 27); - this.endTextBox13.TabIndex = 54; - this.endTextBox13.Visible = false; - this.endTextBox13.AcceptsTabChanged += new System.EventHandler(this.endTextBox13_AcceptsTabChanged); - this.endTextBox13.TextChanged += new System.EventHandler(this.endTextBox13_TextChanged); - this.endTextBox13.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox13_KeyPress); - this.endTextBox13.MouseDown += new System.Windows.Forms.MouseEventHandler(this.endTextBox13_MouseDown); - // - // label13 - // - this.label13.AutoSize = true; - this.label13.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.label13.Location = new System.Drawing.Point(598, 528); - this.label13.Name = "label13"; - this.label13.Size = new System.Drawing.Size(136, 18); - this.label13.TabIndex = 52; - this.label13.Text = "Water Meter 13"; - this.label13.Visible = false; - // - // pictureBox1 - // - this.pictureBox1.Location = new System.Drawing.Point(335, 5); - this.pictureBox1.Name = "pictureBox1"; - this.pictureBox1.Size = new System.Drawing.Size(480, 480); - this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; - this.pictureBox1.TabIndex = 101; - this.pictureBox1.TabStop = false; - this.pictureBox1.Click += new System.EventHandler(this.pictureBox1_Click); - // - // rotateImageButton - // - this.rotateImageButton.Font = new System.Drawing.Font("Arial", 27.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.rotateImageButton.Location = new System.Drawing.Point(826, 435); - this.rotateImageButton.Name = "rotateImageButton"; - this.rotateImageButton.Size = new System.Drawing.Size(50, 50); - this.rotateImageButton.TabIndex = 102; - this.rotateImageButton.Text = "↺"; - this.rotateImageButton.UseVisualStyleBackColor = true; - this.rotateImageButton.Click += new System.EventHandler(this.rotateImageButton_Click); - // - // TestStartEndForm - // - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.BackColor = System.Drawing.Color.DarkGray; - this.ClientSize = new System.Drawing.Size(1146, 885); - this.Controls.Add(this.rotateImageButton); - this.Controls.Add(this.pictureBox1); - this.Controls.Add(this.exclamation24); - this.Controls.Add(this.startTextBox24); - this.Controls.Add(this.endTextBox24); - this.Controls.Add(this.label24); - this.Controls.Add(this.exclamation23); - this.Controls.Add(this.startTextBox23); - this.Controls.Add(this.endTextBox23); - this.Controls.Add(this.label23); - this.Controls.Add(this.exclamation22); - this.Controls.Add(this.startTextBox22); - this.Controls.Add(this.endTextBox22); - this.Controls.Add(this.label22); - this.Controls.Add(this.exclamation21); - this.Controls.Add(this.startTextBox21); - this.Controls.Add(this.endTextBox21); - this.Controls.Add(this.label21); - this.Controls.Add(this.exclamation20); - this.Controls.Add(this.startTextBox20); - this.Controls.Add(this.endTextBox20); - this.Controls.Add(this.label20); - this.Controls.Add(this.exclamation19); - this.Controls.Add(this.startTextBox19); - this.Controls.Add(this.endTextBox19); - this.Controls.Add(this.label19); - this.Controls.Add(this.exclamation18); - this.Controls.Add(this.exclamation17); - this.Controls.Add(this.startTextBox18); - this.Controls.Add(this.exclamation16); - this.Controls.Add(this.endTextBox18); - this.Controls.Add(this.label18); - this.Controls.Add(this.startTextBox17); - this.Controls.Add(this.exclamation15); - this.Controls.Add(this.endTextBox17); - this.Controls.Add(this.label17); - this.Controls.Add(this.startTextBox16); - this.Controls.Add(this.exclamation14); - this.Controls.Add(this.endTextBox16); - this.Controls.Add(this.label16); - this.Controls.Add(this.startTextBox15); - this.Controls.Add(this.exclamation13); - this.Controls.Add(this.endTextBox15); - this.Controls.Add(this.label15); - this.Controls.Add(this.startTextBox14); - this.Controls.Add(this.endLabel2); - this.Controls.Add(this.endTextBox14); - this.Controls.Add(this.label14); - this.Controls.Add(this.startTextBox13); - this.Controls.Add(this.startLabel2); - this.Controls.Add(this.endTextBox13); - this.Controls.Add(this.label13); - this.Controls.Add(this.exclamation12); - this.Controls.Add(this.startTextBox12); - this.Controls.Add(this.endTextBox12); - this.Controls.Add(this.label12); - this.Controls.Add(this.exclamation11); - this.Controls.Add(this.startTextBox11); - this.Controls.Add(this.endTextBox11); - this.Controls.Add(this.label11); - this.Controls.Add(this.exclamation10); - this.Controls.Add(this.startTextBox10); - this.Controls.Add(this.endTextBox10); - this.Controls.Add(this.label10); - this.Controls.Add(this.exclamation9); - this.Controls.Add(this.startTextBox9); - this.Controls.Add(this.endTextBox9); - this.Controls.Add(this.label9); - this.Controls.Add(this.exclamation8); - this.Controls.Add(this.startTextBox8); - this.Controls.Add(this.endTextBox8); - this.Controls.Add(this.label8); - this.Controls.Add(this.exclamation7); - this.Controls.Add(this.startTextBox7); - this.Controls.Add(this.endTextBox7); - this.Controls.Add(this.label7); - this.Controls.Add(this.exclamation6); - this.Controls.Add(this.exclamation5); - this.Controls.Add(this.startTextBox6); - this.Controls.Add(this.exclamation4); - this.Controls.Add(this.endTextBox6); - this.Controls.Add(this.label6); - this.Controls.Add(this.startTextBox5); - this.Controls.Add(this.exclamation3); - this.Controls.Add(this.endTextBox5); - this.Controls.Add(this.label5); - this.Controls.Add(this.startTextBox4); - this.Controls.Add(this.exclamation2); - this.Controls.Add(this.endTextBox4); - this.Controls.Add(this.label4); - this.Controls.Add(this.startTextBox3); - this.Controls.Add(this.exclamation1); - this.Controls.Add(this.endTextBox3); - this.Controls.Add(this.label3); - this.Controls.Add(this.startTextBox2); - this.Controls.Add(this.endLabel); - this.Controls.Add(this.endTextBox2); - this.Controls.Add(this.label2); - this.Controls.Add(this.startTextBox1); - this.Controls.Add(this.startLabel); - this.Controls.Add(this.endTextBox1); - this.Controls.Add(this.label1); - this.Controls.Add(this.okButton); - this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow; - this.Name = "TestStartEndForm"; - this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide; - this.Text = "End States"; - this.TopMost = true; - this.Load += new System.EventHandler(this.TestStartEndForm_Load); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); - this.ResumeLayout(false); - this.PerformLayout(); + this.exclamation1 = new System.Windows.Forms.Label(); + this.startTextBox1 = new System.Windows.Forms.TextBox(); + this.endTextBox1 = new System.Windows.Forms.TextBox(); + this.label1 = new System.Windows.Forms.Label(); + this.okButton = new System.Windows.Forms.Button(); + this.exclamation3 = new System.Windows.Forms.Label(); + this.startTextBox3 = new System.Windows.Forms.TextBox(); + this.endTextBox3 = new System.Windows.Forms.TextBox(); + this.label3 = new System.Windows.Forms.Label(); + this.exclamation4 = new System.Windows.Forms.Label(); + this.startTextBox4 = new System.Windows.Forms.TextBox(); + this.endTextBox4 = new System.Windows.Forms.TextBox(); + this.label4 = new System.Windows.Forms.Label(); + this.exclamation5 = new System.Windows.Forms.Label(); + this.startTextBox5 = new System.Windows.Forms.TextBox(); + this.endTextBox5 = new System.Windows.Forms.TextBox(); + this.label5 = new System.Windows.Forms.Label(); + this.exclamation6 = new System.Windows.Forms.Label(); + this.startTextBox6 = new System.Windows.Forms.TextBox(); + this.endTextBox6 = new System.Windows.Forms.TextBox(); + this.label6 = new System.Windows.Forms.Label(); + this.startLabel = new System.Windows.Forms.Label(); + this.endLabel = new System.Windows.Forms.Label(); + this.label2 = new System.Windows.Forms.Label(); + this.endTextBox2 = new System.Windows.Forms.TextBox(); + this.startTextBox2 = new System.Windows.Forms.TextBox(); + this.exclamation2 = new System.Windows.Forms.Label(); + this.exclamation7 = new System.Windows.Forms.Label(); + this.startTextBox7 = new System.Windows.Forms.TextBox(); + this.endTextBox7 = new System.Windows.Forms.TextBox(); + this.label7 = new System.Windows.Forms.Label(); + this.exclamation8 = new System.Windows.Forms.Label(); + this.startTextBox8 = new System.Windows.Forms.TextBox(); + this.endTextBox8 = new System.Windows.Forms.TextBox(); + this.label8 = new System.Windows.Forms.Label(); + this.exclamation9 = new System.Windows.Forms.Label(); + this.startTextBox9 = new System.Windows.Forms.TextBox(); + this.endTextBox9 = new System.Windows.Forms.TextBox(); + this.label9 = new System.Windows.Forms.Label(); + this.exclamation10 = new System.Windows.Forms.Label(); + this.startTextBox10 = new System.Windows.Forms.TextBox(); + this.endTextBox10 = new System.Windows.Forms.TextBox(); + this.label10 = new System.Windows.Forms.Label(); + this.exclamation11 = new System.Windows.Forms.Label(); + this.startTextBox11 = new System.Windows.Forms.TextBox(); + this.endTextBox11 = new System.Windows.Forms.TextBox(); + this.label11 = new System.Windows.Forms.Label(); + this.exclamation12 = new System.Windows.Forms.Label(); + this.startTextBox12 = new System.Windows.Forms.TextBox(); + this.endTextBox12 = new System.Windows.Forms.TextBox(); + this.label12 = new System.Windows.Forms.Label(); + this.exclamation24 = new System.Windows.Forms.Label(); + this.startTextBox24 = new System.Windows.Forms.TextBox(); + this.endTextBox24 = new System.Windows.Forms.TextBox(); + this.label24 = new System.Windows.Forms.Label(); + this.exclamation23 = new System.Windows.Forms.Label(); + this.startTextBox23 = new System.Windows.Forms.TextBox(); + this.endTextBox23 = new System.Windows.Forms.TextBox(); + this.label23 = new System.Windows.Forms.Label(); + this.exclamation22 = new System.Windows.Forms.Label(); + this.startTextBox22 = new System.Windows.Forms.TextBox(); + this.endTextBox22 = new System.Windows.Forms.TextBox(); + this.label22 = new System.Windows.Forms.Label(); + this.exclamation21 = new System.Windows.Forms.Label(); + this.startTextBox21 = new System.Windows.Forms.TextBox(); + this.endTextBox21 = new System.Windows.Forms.TextBox(); + this.label21 = new System.Windows.Forms.Label(); + this.exclamation20 = new System.Windows.Forms.Label(); + this.startTextBox20 = new System.Windows.Forms.TextBox(); + this.endTextBox20 = new System.Windows.Forms.TextBox(); + this.label20 = new System.Windows.Forms.Label(); + this.exclamation19 = new System.Windows.Forms.Label(); + this.startTextBox19 = new System.Windows.Forms.TextBox(); + this.endTextBox19 = new System.Windows.Forms.TextBox(); + this.label19 = new System.Windows.Forms.Label(); + this.exclamation18 = new System.Windows.Forms.Label(); + this.exclamation17 = new System.Windows.Forms.Label(); + this.startTextBox18 = new System.Windows.Forms.TextBox(); + this.exclamation16 = new System.Windows.Forms.Label(); + this.endTextBox18 = new System.Windows.Forms.TextBox(); + this.label18 = new System.Windows.Forms.Label(); + this.startTextBox17 = new System.Windows.Forms.TextBox(); + this.exclamation15 = new System.Windows.Forms.Label(); + this.endTextBox17 = new System.Windows.Forms.TextBox(); + this.label17 = new System.Windows.Forms.Label(); + this.startTextBox16 = new System.Windows.Forms.TextBox(); + this.exclamation14 = new System.Windows.Forms.Label(); + this.endTextBox16 = new System.Windows.Forms.TextBox(); + this.label16 = new System.Windows.Forms.Label(); + this.startTextBox15 = new System.Windows.Forms.TextBox(); + this.exclamation13 = new System.Windows.Forms.Label(); + this.endTextBox15 = new System.Windows.Forms.TextBox(); + this.label15 = new System.Windows.Forms.Label(); + this.startTextBox14 = new System.Windows.Forms.TextBox(); + this.endLabel2 = new System.Windows.Forms.Label(); + this.endTextBox14 = new System.Windows.Forms.TextBox(); + this.label14 = new System.Windows.Forms.Label(); + this.startTextBox13 = new System.Windows.Forms.TextBox(); + this.startLabel2 = new System.Windows.Forms.Label(); + this.endTextBox13 = new System.Windows.Forms.TextBox(); + this.label13 = new System.Windows.Forms.Label(); + this.pictureBox1 = new System.Windows.Forms.PictureBox(); + this.rotateImageButton = new System.Windows.Forms.Button(); + this.imageProcessingProgressBar = new System.Windows.Forms.ProgressBar(); + this.imageProcessingProgressLabel = new System.Windows.Forms.Label(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); + this.SuspendLayout(); + // + // exclamation1 + // + this.exclamation1.AutoSize = true; + this.exclamation1.Font = new System.Drawing.Font("Verdana", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.exclamation1.ForeColor = System.Drawing.Color.Red; + this.exclamation1.Location = new System.Drawing.Point(895, 113); + this.exclamation1.Name = "exclamation1"; + this.exclamation1.Size = new System.Drawing.Size(23, 29); + this.exclamation1.TabIndex = 5; + this.exclamation1.Text = "!"; + this.exclamation1.Visible = false; + // + // startTextBox1 + // + this.startTextBox1.Enabled = false; + this.startTextBox1.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.startTextBox1.Location = new System.Drawing.Point(548, 117); + this.startTextBox1.Name = "startTextBox1"; + this.startTextBox1.Size = new System.Drawing.Size(163, 27); + this.startTextBox1.TabIndex = 3; + this.startTextBox1.Visible = false; + this.startTextBox1.AcceptsTabChanged += new System.EventHandler(this.startTextBox1_AcceptsTabChanged); + this.startTextBox1.TextChanged += new System.EventHandler(this.startTextBox1_TextChanged); + this.startTextBox1.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox1_KeyPress); + this.startTextBox1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.startTextBox1_MouseDown); + // + // endTextBox1 + // + this.endTextBox1.Enabled = false; + this.endTextBox1.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.endTextBox1.Location = new System.Drawing.Point(730, 117); + this.endTextBox1.Name = "endTextBox1"; + this.endTextBox1.Size = new System.Drawing.Size(163, 27); + this.endTextBox1.TabIndex = 4; + this.endTextBox1.Visible = false; + this.endTextBox1.AcceptsTabChanged += new System.EventHandler(this.endTextBox1_AcceptsTabChanged); + this.endTextBox1.TextChanged += new System.EventHandler(this.endTextBox1_TextChanged); + this.endTextBox1.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox1_KeyPress); + this.endTextBox1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.endTextBox1_MouseDown); + // + // label1 + // + this.label1.AutoSize = true; + this.label1.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.label1.Location = new System.Drawing.Point(508, 120); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(18, 18); + this.label1.TabIndex = 2; + this.label1.Text = "1"; + this.label1.Visible = false; + // + // okButton + // + this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.okButton.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.okButton.ForeColor = System.Drawing.Color.Black; + this.okButton.Location = new System.Drawing.Point(1218, 23); + this.okButton.Name = "okButton"; + this.okButton.Size = new System.Drawing.Size(123, 63); + this.okButton.TabIndex = 100; + this.okButton.Text = "OK"; + this.okButton.UseVisualStyleBackColor = true; + this.okButton.Click += new System.EventHandler(this.okButton_Click); + // + // exclamation3 + // + this.exclamation3.AutoSize = true; + this.exclamation3.Font = new System.Drawing.Font("Verdana", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.exclamation3.ForeColor = System.Drawing.Color.Red; + this.exclamation3.Location = new System.Drawing.Point(895, 173); + this.exclamation3.Name = "exclamation3"; + this.exclamation3.Size = new System.Drawing.Size(23, 29); + this.exclamation3.TabIndex = 13; + this.exclamation3.Text = "!"; + this.exclamation3.Visible = false; + // + // startTextBox3 + // + this.startTextBox3.Enabled = false; + this.startTextBox3.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.startTextBox3.Location = new System.Drawing.Point(548, 177); + this.startTextBox3.Name = "startTextBox3"; + this.startTextBox3.Size = new System.Drawing.Size(163, 27); + this.startTextBox3.TabIndex = 11; + this.startTextBox3.Visible = false; + this.startTextBox3.AcceptsTabChanged += new System.EventHandler(this.startTextBox3_AcceptsTabChanged); + this.startTextBox3.TextChanged += new System.EventHandler(this.startTextBox3_TextChanged); + this.startTextBox3.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox3_KeyPress); + this.startTextBox3.MouseDown += new System.Windows.Forms.MouseEventHandler(this.startTextBox3_MouseDown); + // + // endTextBox3 + // + this.endTextBox3.Enabled = false; + this.endTextBox3.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.endTextBox3.Location = new System.Drawing.Point(730, 177); + this.endTextBox3.Name = "endTextBox3"; + this.endTextBox3.Size = new System.Drawing.Size(163, 27); + this.endTextBox3.TabIndex = 12; + this.endTextBox3.Visible = false; + this.endTextBox3.AcceptsTabChanged += new System.EventHandler(this.endTextBox3_AcceptsTabChanged); + this.endTextBox3.TextChanged += new System.EventHandler(this.endTextBox3_TextChanged); + this.endTextBox3.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox3_KeyPress); + this.endTextBox3.MouseDown += new System.Windows.Forms.MouseEventHandler(this.endTextBox3_MouseDown); + // + // label3 + // + this.label3.AutoSize = true; + this.label3.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.label3.Location = new System.Drawing.Point(508, 180); + this.label3.Name = "label3"; + this.label3.Size = new System.Drawing.Size(18, 18); + this.label3.TabIndex = 10; + this.label3.Text = "3"; + this.label3.Visible = false; + // + // exclamation4 + // + this.exclamation4.AutoSize = true; + this.exclamation4.Font = new System.Drawing.Font("Verdana", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.exclamation4.ForeColor = System.Drawing.Color.Red; + this.exclamation4.Location = new System.Drawing.Point(895, 203); + this.exclamation4.Name = "exclamation4"; + this.exclamation4.Size = new System.Drawing.Size(23, 29); + this.exclamation4.TabIndex = 17; + this.exclamation4.Text = "!"; + this.exclamation4.Visible = false; + // + // startTextBox4 + // + this.startTextBox4.Enabled = false; + this.startTextBox4.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.startTextBox4.Location = new System.Drawing.Point(548, 207); + this.startTextBox4.Name = "startTextBox4"; + this.startTextBox4.Size = new System.Drawing.Size(163, 27); + this.startTextBox4.TabIndex = 15; + this.startTextBox4.Visible = false; + this.startTextBox4.AcceptsTabChanged += new System.EventHandler(this.startTextBox4_AcceptsTabChanged); + this.startTextBox4.TextChanged += new System.EventHandler(this.startTextBox4_TextChanged); + this.startTextBox4.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox4_KeyPress); + this.startTextBox4.MouseDown += new System.Windows.Forms.MouseEventHandler(this.startTextBox4_MouseDown); + // + // endTextBox4 + // + this.endTextBox4.Enabled = false; + this.endTextBox4.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.endTextBox4.Location = new System.Drawing.Point(730, 207); + this.endTextBox4.Name = "endTextBox4"; + this.endTextBox4.Size = new System.Drawing.Size(163, 27); + this.endTextBox4.TabIndex = 16; + this.endTextBox4.Visible = false; + this.endTextBox4.AcceptsTabChanged += new System.EventHandler(this.endTextBox4_AcceptsTabChanged); + this.endTextBox4.TextChanged += new System.EventHandler(this.endTextBox4_TextChanged); + this.endTextBox4.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox4_KeyPress); + this.endTextBox4.MouseDown += new System.Windows.Forms.MouseEventHandler(this.endTextBox4_MouseDown); + // + // label4 + // + this.label4.AutoSize = true; + this.label4.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.label4.Location = new System.Drawing.Point(508, 210); + this.label4.Name = "label4"; + this.label4.Size = new System.Drawing.Size(18, 18); + this.label4.TabIndex = 14; + this.label4.Text = "4"; + this.label4.Visible = false; + // + // exclamation5 + // + this.exclamation5.AutoSize = true; + this.exclamation5.Font = new System.Drawing.Font("Verdana", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.exclamation5.ForeColor = System.Drawing.Color.Red; + this.exclamation5.Location = new System.Drawing.Point(895, 233); + this.exclamation5.Name = "exclamation5"; + this.exclamation5.Size = new System.Drawing.Size(23, 29); + this.exclamation5.TabIndex = 21; + this.exclamation5.Text = "!"; + this.exclamation5.Visible = false; + // + // startTextBox5 + // + this.startTextBox5.Enabled = false; + this.startTextBox5.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.startTextBox5.Location = new System.Drawing.Point(548, 237); + this.startTextBox5.Name = "startTextBox5"; + this.startTextBox5.Size = new System.Drawing.Size(163, 27); + this.startTextBox5.TabIndex = 19; + this.startTextBox5.Visible = false; + this.startTextBox5.AcceptsTabChanged += new System.EventHandler(this.startTextBox5_AcceptsTabChanged); + this.startTextBox5.TextChanged += new System.EventHandler(this.startTextBox5_TextChanged); + this.startTextBox5.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox5_KeyPress); + this.startTextBox5.MouseDown += new System.Windows.Forms.MouseEventHandler(this.startTextBox5_MouseDown); + // + // endTextBox5 + // + this.endTextBox5.Enabled = false; + this.endTextBox5.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.endTextBox5.Location = new System.Drawing.Point(730, 237); + this.endTextBox5.Name = "endTextBox5"; + this.endTextBox5.Size = new System.Drawing.Size(163, 27); + this.endTextBox5.TabIndex = 20; + this.endTextBox5.Visible = false; + this.endTextBox5.AcceptsTabChanged += new System.EventHandler(this.endTextBox5_AcceptsTabChanged); + this.endTextBox5.TextChanged += new System.EventHandler(this.endTextBox5_TextChanged); + this.endTextBox5.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox5_KeyPress); + this.endTextBox5.MouseDown += new System.Windows.Forms.MouseEventHandler(this.endTextBox5_MouseDown); + // + // label5 + // + this.label5.AutoSize = true; + this.label5.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.label5.Location = new System.Drawing.Point(508, 240); + this.label5.Name = "label5"; + this.label5.Size = new System.Drawing.Size(18, 18); + this.label5.TabIndex = 18; + this.label5.Text = "5"; + this.label5.Visible = false; + // + // exclamation6 + // + this.exclamation6.AutoSize = true; + this.exclamation6.Font = new System.Drawing.Font("Verdana", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.exclamation6.ForeColor = System.Drawing.Color.Red; + this.exclamation6.Location = new System.Drawing.Point(895, 263); + this.exclamation6.Name = "exclamation6"; + this.exclamation6.Size = new System.Drawing.Size(23, 29); + this.exclamation6.TabIndex = 25; + this.exclamation6.Text = "!"; + this.exclamation6.Visible = false; + // + // startTextBox6 + // + this.startTextBox6.Enabled = false; + this.startTextBox6.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.startTextBox6.Location = new System.Drawing.Point(548, 267); + this.startTextBox6.Name = "startTextBox6"; + this.startTextBox6.Size = new System.Drawing.Size(163, 27); + this.startTextBox6.TabIndex = 23; + this.startTextBox6.Visible = false; + this.startTextBox6.AcceptsTabChanged += new System.EventHandler(this.startTextBox6_AcceptsTabChanged); + this.startTextBox6.TextChanged += new System.EventHandler(this.startTextBox6_TextChanged); + this.startTextBox6.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox6_KeyPress); + this.startTextBox6.MouseDown += new System.Windows.Forms.MouseEventHandler(this.startTextBox6_MouseDown); + // + // endTextBox6 + // + this.endTextBox6.Enabled = false; + this.endTextBox6.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.endTextBox6.Location = new System.Drawing.Point(730, 267); + this.endTextBox6.Name = "endTextBox6"; + this.endTextBox6.Size = new System.Drawing.Size(163, 27); + this.endTextBox6.TabIndex = 24; + this.endTextBox6.Visible = false; + this.endTextBox6.AcceptsTabChanged += new System.EventHandler(this.endTextBox6_AcceptsTabChanged); + this.endTextBox6.TextChanged += new System.EventHandler(this.endTextBox6_TextChanged); + this.endTextBox6.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox6_KeyPress); + this.endTextBox6.MouseDown += new System.Windows.Forms.MouseEventHandler(this.endTextBox6_MouseDown); + // + // label6 + // + this.label6.AutoSize = true; + this.label6.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.label6.Location = new System.Drawing.Point(508, 270); + this.label6.Name = "label6"; + this.label6.Size = new System.Drawing.Size(18, 18); + this.label6.TabIndex = 22; + this.label6.Text = "6"; + this.label6.Visible = false; + // + // startLabel + // + this.startLabel.AutoSize = true; + this.startLabel.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.startLabel.Location = new System.Drawing.Point(547, 94); + this.startLabel.Name = "startLabel"; + this.startLabel.Size = new System.Drawing.Size(48, 18); + this.startLabel.TabIndex = 0; + this.startLabel.Text = "Start"; + // + // endLabel + // + this.endLabel.AutoSize = true; + this.endLabel.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.endLabel.Location = new System.Drawing.Point(728, 94); + this.endLabel.Name = "endLabel"; + this.endLabel.Size = new System.Drawing.Size(38, 18); + this.endLabel.TabIndex = 1; + this.endLabel.Text = "End"; + // + // label2 + // + this.label2.AutoSize = true; + this.label2.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.label2.Location = new System.Drawing.Point(508, 150); + this.label2.Name = "label2"; + this.label2.Size = new System.Drawing.Size(18, 18); + this.label2.TabIndex = 6; + this.label2.Text = "2"; + this.label2.Visible = false; + // + // endTextBox2 + // + this.endTextBox2.Enabled = false; + this.endTextBox2.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.endTextBox2.Location = new System.Drawing.Point(730, 147); + this.endTextBox2.Name = "endTextBox2"; + this.endTextBox2.Size = new System.Drawing.Size(163, 27); + this.endTextBox2.TabIndex = 8; + this.endTextBox2.Visible = false; + this.endTextBox2.AcceptsTabChanged += new System.EventHandler(this.endTextBox2_AcceptsTabChanged); + this.endTextBox2.TextChanged += new System.EventHandler(this.endTextBox2_TextChanged); + this.endTextBox2.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox2_KeyPress); + this.endTextBox2.MouseDown += new System.Windows.Forms.MouseEventHandler(this.endTextBox2_MouseDown); + // + // startTextBox2 + // + this.startTextBox2.Enabled = false; + this.startTextBox2.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.startTextBox2.Location = new System.Drawing.Point(548, 147); + this.startTextBox2.Name = "startTextBox2"; + this.startTextBox2.Size = new System.Drawing.Size(163, 27); + this.startTextBox2.TabIndex = 7; + this.startTextBox2.Visible = false; + this.startTextBox2.AcceptsTabChanged += new System.EventHandler(this.startTextBox2_AcceptsTabChanged); + this.startTextBox2.TextChanged += new System.EventHandler(this.startTextBox2_TextChanged); + this.startTextBox2.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox2_KeyPress); + this.startTextBox2.MouseDown += new System.Windows.Forms.MouseEventHandler(this.startTextBox2_MouseDown); + // + // exclamation2 + // + this.exclamation2.AutoSize = true; + this.exclamation2.Font = new System.Drawing.Font("Verdana", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.exclamation2.ForeColor = System.Drawing.Color.Red; + this.exclamation2.Location = new System.Drawing.Point(895, 143); + this.exclamation2.Name = "exclamation2"; + this.exclamation2.Size = new System.Drawing.Size(23, 29); + this.exclamation2.TabIndex = 9; + this.exclamation2.Text = "!"; + this.exclamation2.Visible = false; + // + // exclamation7 + // + this.exclamation7.AutoSize = true; + this.exclamation7.Font = new System.Drawing.Font("Verdana", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.exclamation7.ForeColor = System.Drawing.Color.Red; + this.exclamation7.Location = new System.Drawing.Point(895, 293); + this.exclamation7.Name = "exclamation7"; + this.exclamation7.Size = new System.Drawing.Size(23, 29); + this.exclamation7.TabIndex = 29; + this.exclamation7.Text = "!"; + this.exclamation7.Visible = false; + // + // startTextBox7 + // + this.startTextBox7.Enabled = false; + this.startTextBox7.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.startTextBox7.Location = new System.Drawing.Point(548, 297); + this.startTextBox7.Name = "startTextBox7"; + this.startTextBox7.Size = new System.Drawing.Size(163, 27); + this.startTextBox7.TabIndex = 27; + this.startTextBox7.Visible = false; + this.startTextBox7.AcceptsTabChanged += new System.EventHandler(this.startTextBox7_AcceptsTabChanged); + this.startTextBox7.TextChanged += new System.EventHandler(this.startTextBox7_TextChanged); + this.startTextBox7.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox7_KeyPress); + this.startTextBox7.MouseDown += new System.Windows.Forms.MouseEventHandler(this.startTextBox7_MouseDown); + // + // endTextBox7 + // + this.endTextBox7.Enabled = false; + this.endTextBox7.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.endTextBox7.Location = new System.Drawing.Point(730, 297); + this.endTextBox7.Name = "endTextBox7"; + this.endTextBox7.Size = new System.Drawing.Size(163, 27); + this.endTextBox7.TabIndex = 28; + this.endTextBox7.Visible = false; + this.endTextBox7.AcceptsTabChanged += new System.EventHandler(this.endTextBox7_AcceptsTabChanged); + this.endTextBox7.TextChanged += new System.EventHandler(this.endTextBox7_TextChanged); + this.endTextBox7.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox7_KeyPress); + this.endTextBox7.MouseDown += new System.Windows.Forms.MouseEventHandler(this.endTextBox7_MouseDown); + // + // label7 + // + this.label7.AutoSize = true; + this.label7.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.label7.Location = new System.Drawing.Point(508, 300); + this.label7.Name = "label7"; + this.label7.Size = new System.Drawing.Size(18, 18); + this.label7.TabIndex = 26; + this.label7.Text = "7"; + this.label7.Visible = false; + // + // exclamation8 + // + this.exclamation8.AutoSize = true; + this.exclamation8.Font = new System.Drawing.Font("Verdana", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.exclamation8.ForeColor = System.Drawing.Color.Red; + this.exclamation8.Location = new System.Drawing.Point(895, 323); + this.exclamation8.Name = "exclamation8"; + this.exclamation8.Size = new System.Drawing.Size(23, 29); + this.exclamation8.TabIndex = 33; + this.exclamation8.Text = "!"; + this.exclamation8.Visible = false; + // + // startTextBox8 + // + this.startTextBox8.Enabled = false; + this.startTextBox8.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.startTextBox8.Location = new System.Drawing.Point(548, 327); + this.startTextBox8.Name = "startTextBox8"; + this.startTextBox8.Size = new System.Drawing.Size(163, 27); + this.startTextBox8.TabIndex = 31; + this.startTextBox8.Visible = false; + this.startTextBox8.AcceptsTabChanged += new System.EventHandler(this.startTextBox8_AcceptsTabChanged); + this.startTextBox8.TextChanged += new System.EventHandler(this.startTextBox8_TextChanged); + this.startTextBox8.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox8_KeyPress); + this.startTextBox8.MouseDown += new System.Windows.Forms.MouseEventHandler(this.startTextBox8_MouseDown); + // + // endTextBox8 + // + this.endTextBox8.Enabled = false; + this.endTextBox8.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.endTextBox8.Location = new System.Drawing.Point(730, 327); + this.endTextBox8.Name = "endTextBox8"; + this.endTextBox8.Size = new System.Drawing.Size(163, 27); + this.endTextBox8.TabIndex = 32; + this.endTextBox8.Visible = false; + this.endTextBox8.AcceptsTabChanged += new System.EventHandler(this.endTextBox8_AcceptsTabChanged); + this.endTextBox8.TextChanged += new System.EventHandler(this.endTextBox8_TextChanged); + this.endTextBox8.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox8_KeyPress); + this.endTextBox8.MouseDown += new System.Windows.Forms.MouseEventHandler(this.endTextBox8_MouseDown); + // + // label8 + // + this.label8.AutoSize = true; + this.label8.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.label8.Location = new System.Drawing.Point(508, 330); + this.label8.Name = "label8"; + this.label8.Size = new System.Drawing.Size(18, 18); + this.label8.TabIndex = 30; + this.label8.Text = "8"; + this.label8.Visible = false; + // + // exclamation9 + // + this.exclamation9.AutoSize = true; + this.exclamation9.Font = new System.Drawing.Font("Verdana", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.exclamation9.ForeColor = System.Drawing.Color.Red; + this.exclamation9.Location = new System.Drawing.Point(895, 353); + this.exclamation9.Name = "exclamation9"; + this.exclamation9.Size = new System.Drawing.Size(23, 29); + this.exclamation9.TabIndex = 37; + this.exclamation9.Text = "!"; + this.exclamation9.Visible = false; + // + // startTextBox9 + // + this.startTextBox9.Enabled = false; + this.startTextBox9.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.startTextBox9.Location = new System.Drawing.Point(548, 357); + this.startTextBox9.Name = "startTextBox9"; + this.startTextBox9.Size = new System.Drawing.Size(163, 27); + this.startTextBox9.TabIndex = 35; + this.startTextBox9.Visible = false; + this.startTextBox9.AcceptsTabChanged += new System.EventHandler(this.startTextBox9_AcceptsTabChanged); + this.startTextBox9.TextChanged += new System.EventHandler(this.startTextBox9_TextChanged); + this.startTextBox9.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox9_KeyPress); + this.startTextBox9.MouseDown += new System.Windows.Forms.MouseEventHandler(this.startTextBox9_MouseDown); + // + // endTextBox9 + // + this.endTextBox9.Enabled = false; + this.endTextBox9.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.endTextBox9.Location = new System.Drawing.Point(730, 357); + this.endTextBox9.Name = "endTextBox9"; + this.endTextBox9.Size = new System.Drawing.Size(163, 27); + this.endTextBox9.TabIndex = 36; + this.endTextBox9.Visible = false; + this.endTextBox9.AcceptsTabChanged += new System.EventHandler(this.endTextBox9_AcceptsTabChanged); + this.endTextBox9.TextChanged += new System.EventHandler(this.endTextBox9_TextChanged); + this.endTextBox9.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox9_KeyPress); + this.endTextBox9.MouseDown += new System.Windows.Forms.MouseEventHandler(this.endTextBox9_MouseDown); + // + // label9 + // + this.label9.AutoSize = true; + this.label9.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.label9.Location = new System.Drawing.Point(508, 360); + this.label9.Name = "label9"; + this.label9.Size = new System.Drawing.Size(18, 18); + this.label9.TabIndex = 34; + this.label9.Text = "9"; + this.label9.Visible = false; + // + // exclamation10 + // + this.exclamation10.AutoSize = true; + this.exclamation10.Font = new System.Drawing.Font("Verdana", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.exclamation10.ForeColor = System.Drawing.Color.Red; + this.exclamation10.Location = new System.Drawing.Point(895, 383); + this.exclamation10.Name = "exclamation10"; + this.exclamation10.Size = new System.Drawing.Size(23, 29); + this.exclamation10.TabIndex = 41; + this.exclamation10.Text = "!"; + this.exclamation10.Visible = false; + // + // startTextBox10 + // + this.startTextBox10.Enabled = false; + this.startTextBox10.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.startTextBox10.Location = new System.Drawing.Point(548, 387); + this.startTextBox10.Name = "startTextBox10"; + this.startTextBox10.Size = new System.Drawing.Size(163, 27); + this.startTextBox10.TabIndex = 39; + this.startTextBox10.Visible = false; + this.startTextBox10.AcceptsTabChanged += new System.EventHandler(this.startTextBox10_AcceptsTabChanged); + this.startTextBox10.TextChanged += new System.EventHandler(this.startTextBox10_TextChanged); + this.startTextBox10.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox10_KeyPress); + this.startTextBox10.MouseDown += new System.Windows.Forms.MouseEventHandler(this.startTextBox10_MouseDown); + // + // endTextBox10 + // + this.endTextBox10.Enabled = false; + this.endTextBox10.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.endTextBox10.Location = new System.Drawing.Point(730, 387); + this.endTextBox10.Name = "endTextBox10"; + this.endTextBox10.Size = new System.Drawing.Size(163, 27); + this.endTextBox10.TabIndex = 40; + this.endTextBox10.Visible = false; + this.endTextBox10.AcceptsTabChanged += new System.EventHandler(this.endTextBox10_AcceptsTabChanged); + this.endTextBox10.TextChanged += new System.EventHandler(this.endTextBox10_TextChanged); + this.endTextBox10.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox10_KeyPress); + this.endTextBox10.MouseDown += new System.Windows.Forms.MouseEventHandler(this.endTextBox10_MouseDown); + // + // label10 + // + this.label10.AutoSize = true; + this.label10.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.label10.Location = new System.Drawing.Point(508, 390); + this.label10.Name = "label10"; + this.label10.Size = new System.Drawing.Size(28, 18); + this.label10.TabIndex = 38; + this.label10.Text = "10"; + this.label10.Visible = false; + // + // exclamation11 + // + this.exclamation11.AutoSize = true; + this.exclamation11.Font = new System.Drawing.Font("Verdana", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.exclamation11.ForeColor = System.Drawing.Color.Red; + this.exclamation11.Location = new System.Drawing.Point(895, 413); + this.exclamation11.Name = "exclamation11"; + this.exclamation11.Size = new System.Drawing.Size(23, 29); + this.exclamation11.TabIndex = 45; + this.exclamation11.Text = "!"; + this.exclamation11.Visible = false; + // + // startTextBox11 + // + this.startTextBox11.Enabled = false; + this.startTextBox11.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.startTextBox11.Location = new System.Drawing.Point(548, 417); + this.startTextBox11.Name = "startTextBox11"; + this.startTextBox11.Size = new System.Drawing.Size(163, 27); + this.startTextBox11.TabIndex = 43; + this.startTextBox11.Visible = false; + this.startTextBox11.AcceptsTabChanged += new System.EventHandler(this.startTextBox11_AcceptsTabChanged); + this.startTextBox11.TextChanged += new System.EventHandler(this.startTextBox11_TextChanged); + this.startTextBox11.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox11_KeyPress); + this.startTextBox11.MouseDown += new System.Windows.Forms.MouseEventHandler(this.startTextBox11_MouseDown); + // + // endTextBox11 + // + this.endTextBox11.Enabled = false; + this.endTextBox11.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.endTextBox11.Location = new System.Drawing.Point(730, 417); + this.endTextBox11.Name = "endTextBox11"; + this.endTextBox11.Size = new System.Drawing.Size(163, 27); + this.endTextBox11.TabIndex = 44; + this.endTextBox11.Visible = false; + this.endTextBox11.AcceptsTabChanged += new System.EventHandler(this.endTextBox11_AcceptsTabChanged); + this.endTextBox11.TextChanged += new System.EventHandler(this.endTextBox11_TextChanged); + this.endTextBox11.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox11_KeyPress); + this.endTextBox11.MouseDown += new System.Windows.Forms.MouseEventHandler(this.endTextBox11_MouseDown); + // + // label11 + // + this.label11.AutoSize = true; + this.label11.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.label11.Location = new System.Drawing.Point(508, 420); + this.label11.Name = "label11"; + this.label11.Size = new System.Drawing.Size(28, 18); + this.label11.TabIndex = 42; + this.label11.Text = "11"; + this.label11.Visible = false; + // + // exclamation12 + // + this.exclamation12.AutoSize = true; + this.exclamation12.Font = new System.Drawing.Font("Verdana", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.exclamation12.ForeColor = System.Drawing.Color.Red; + this.exclamation12.Location = new System.Drawing.Point(895, 443); + this.exclamation12.Name = "exclamation12"; + this.exclamation12.Size = new System.Drawing.Size(23, 29); + this.exclamation12.TabIndex = 49; + this.exclamation12.Text = "!"; + this.exclamation12.Visible = false; + // + // startTextBox12 + // + this.startTextBox12.Enabled = false; + this.startTextBox12.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.startTextBox12.Location = new System.Drawing.Point(548, 447); + this.startTextBox12.Name = "startTextBox12"; + this.startTextBox12.Size = new System.Drawing.Size(163, 27); + this.startTextBox12.TabIndex = 47; + this.startTextBox12.Visible = false; + this.startTextBox12.AcceptsTabChanged += new System.EventHandler(this.startTextBox12_AcceptsTabChanged); + this.startTextBox12.TextChanged += new System.EventHandler(this.startTextBox12_TextChanged); + this.startTextBox12.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox12_KeyPress); + this.startTextBox12.MouseDown += new System.Windows.Forms.MouseEventHandler(this.startTextBox12_MouseDown); + // + // endTextBox12 + // + this.endTextBox12.Enabled = false; + this.endTextBox12.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.endTextBox12.Location = new System.Drawing.Point(730, 447); + this.endTextBox12.Name = "endTextBox12"; + this.endTextBox12.Size = new System.Drawing.Size(163, 27); + this.endTextBox12.TabIndex = 48; + this.endTextBox12.Visible = false; + this.endTextBox12.AcceptsTabChanged += new System.EventHandler(this.endTextBox12_AcceptsTabChanged); + this.endTextBox12.TextChanged += new System.EventHandler(this.endTextBox12_TextChanged); + this.endTextBox12.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox12_KeyPress); + this.endTextBox12.MouseDown += new System.Windows.Forms.MouseEventHandler(this.endTextBox12_MouseDown); + // + // label12 + // + this.label12.AutoSize = true; + this.label12.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.label12.Location = new System.Drawing.Point(508, 450); + this.label12.Name = "label12"; + this.label12.Size = new System.Drawing.Size(28, 18); + this.label12.TabIndex = 46; + this.label12.Text = "12"; + this.label12.Visible = false; + // + // exclamation24 + // + this.exclamation24.AutoSize = true; + this.exclamation24.Font = new System.Drawing.Font("Verdana", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.exclamation24.ForeColor = System.Drawing.Color.Red; + this.exclamation24.Location = new System.Drawing.Point(1342, 443); + this.exclamation24.Name = "exclamation24"; + this.exclamation24.Size = new System.Drawing.Size(23, 29); + this.exclamation24.TabIndex = 99; + this.exclamation24.Text = "!"; + this.exclamation24.Visible = false; + // + // startTextBox24 + // + this.startTextBox24.Enabled = false; + this.startTextBox24.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.startTextBox24.Location = new System.Drawing.Point(995, 447); + this.startTextBox24.Name = "startTextBox24"; + this.startTextBox24.Size = new System.Drawing.Size(163, 27); + this.startTextBox24.TabIndex = 97; + this.startTextBox24.Visible = false; + this.startTextBox24.AcceptsTabChanged += new System.EventHandler(this.startTextBox24_AcceptsTabChanged); + this.startTextBox24.TextChanged += new System.EventHandler(this.startTextBox24_TextChanged); + this.startTextBox24.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox24_KeyPress); + this.startTextBox24.MouseDown += new System.Windows.Forms.MouseEventHandler(this.startTextBox24_MouseDown); + // + // endTextBox24 + // + this.endTextBox24.Enabled = false; + this.endTextBox24.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.endTextBox24.Location = new System.Drawing.Point(1177, 447); + this.endTextBox24.Name = "endTextBox24"; + this.endTextBox24.Size = new System.Drawing.Size(163, 27); + this.endTextBox24.TabIndex = 98; + this.endTextBox24.Visible = false; + this.endTextBox24.AcceptsTabChanged += new System.EventHandler(this.endTextBox24_AcceptsTabChanged); + this.endTextBox24.TextChanged += new System.EventHandler(this.endTextBox24_TextChanged); + this.endTextBox24.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox24_KeyPress); + this.endTextBox24.MouseDown += new System.Windows.Forms.MouseEventHandler(this.endTextBox24_MouseDown); + // + // label24 + // + this.label24.AutoSize = true; + this.label24.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.label24.Location = new System.Drawing.Point(955, 450); + this.label24.Name = "label24"; + this.label24.Size = new System.Drawing.Size(28, 18); + this.label24.TabIndex = 96; + this.label24.Text = "24"; + this.label24.Visible = false; + // + // exclamation23 + // + this.exclamation23.AutoSize = true; + this.exclamation23.Font = new System.Drawing.Font("Verdana", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.exclamation23.ForeColor = System.Drawing.Color.Red; + this.exclamation23.Location = new System.Drawing.Point(1342, 413); + this.exclamation23.Name = "exclamation23"; + this.exclamation23.Size = new System.Drawing.Size(23, 29); + this.exclamation23.TabIndex = 95; + this.exclamation23.Text = "!"; + this.exclamation23.Visible = false; + // + // startTextBox23 + // + this.startTextBox23.Enabled = false; + this.startTextBox23.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.startTextBox23.Location = new System.Drawing.Point(995, 417); + this.startTextBox23.Name = "startTextBox23"; + this.startTextBox23.Size = new System.Drawing.Size(163, 27); + this.startTextBox23.TabIndex = 93; + this.startTextBox23.Visible = false; + this.startTextBox23.AcceptsTabChanged += new System.EventHandler(this.startTextBox23_AcceptsTabChanged); + this.startTextBox23.TextChanged += new System.EventHandler(this.startTextBox23_TextChanged); + this.startTextBox23.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox23_KeyPress); + this.startTextBox23.MouseDown += new System.Windows.Forms.MouseEventHandler(this.startTextBox23_MouseDown); + // + // endTextBox23 + // + this.endTextBox23.Enabled = false; + this.endTextBox23.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.endTextBox23.Location = new System.Drawing.Point(1177, 417); + this.endTextBox23.Name = "endTextBox23"; + this.endTextBox23.Size = new System.Drawing.Size(163, 27); + this.endTextBox23.TabIndex = 94; + this.endTextBox23.Visible = false; + this.endTextBox23.AcceptsTabChanged += new System.EventHandler(this.endTextBox23_AcceptsTabChanged); + this.endTextBox23.TextChanged += new System.EventHandler(this.endTextBox23_TextChanged); + this.endTextBox23.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox23_KeyPress); + this.endTextBox23.MouseDown += new System.Windows.Forms.MouseEventHandler(this.endTextBox23_MouseDown); + // + // label23 + // + this.label23.AutoSize = true; + this.label23.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.label23.Location = new System.Drawing.Point(955, 420); + this.label23.Name = "label23"; + this.label23.Size = new System.Drawing.Size(28, 18); + this.label23.TabIndex = 92; + this.label23.Text = "23"; + this.label23.Visible = false; + // + // exclamation22 + // + this.exclamation22.AutoSize = true; + this.exclamation22.Font = new System.Drawing.Font("Verdana", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.exclamation22.ForeColor = System.Drawing.Color.Red; + this.exclamation22.Location = new System.Drawing.Point(1342, 383); + this.exclamation22.Name = "exclamation22"; + this.exclamation22.Size = new System.Drawing.Size(23, 29); + this.exclamation22.TabIndex = 91; + this.exclamation22.Text = "!"; + this.exclamation22.Visible = false; + // + // startTextBox22 + // + this.startTextBox22.Enabled = false; + this.startTextBox22.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.startTextBox22.Location = new System.Drawing.Point(995, 387); + this.startTextBox22.Name = "startTextBox22"; + this.startTextBox22.Size = new System.Drawing.Size(163, 27); + this.startTextBox22.TabIndex = 89; + this.startTextBox22.Visible = false; + this.startTextBox22.AcceptsTabChanged += new System.EventHandler(this.startTextBox22_AcceptsTabChanged); + this.startTextBox22.TextChanged += new System.EventHandler(this.startTextBox22_TextChanged); + this.startTextBox22.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox22_KeyPress); + this.startTextBox22.MouseDown += new System.Windows.Forms.MouseEventHandler(this.startTextBox22_MouseDown); + // + // endTextBox22 + // + this.endTextBox22.Enabled = false; + this.endTextBox22.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.endTextBox22.Location = new System.Drawing.Point(1177, 387); + this.endTextBox22.Name = "endTextBox22"; + this.endTextBox22.Size = new System.Drawing.Size(163, 27); + this.endTextBox22.TabIndex = 90; + this.endTextBox22.Visible = false; + this.endTextBox22.AcceptsTabChanged += new System.EventHandler(this.endTextBox22_AcceptsTabChanged); + this.endTextBox22.TextChanged += new System.EventHandler(this.endTextBox22_TextChanged); + this.endTextBox22.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox22_KeyPress); + this.endTextBox22.MouseDown += new System.Windows.Forms.MouseEventHandler(this.endTextBox22_MouseDown); + // + // label22 + // + this.label22.AutoSize = true; + this.label22.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.label22.Location = new System.Drawing.Point(955, 390); + this.label22.Name = "label22"; + this.label22.Size = new System.Drawing.Size(28, 18); + this.label22.TabIndex = 88; + this.label22.Text = "22"; + this.label22.Visible = false; + // + // exclamation21 + // + this.exclamation21.AutoSize = true; + this.exclamation21.Font = new System.Drawing.Font("Verdana", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.exclamation21.ForeColor = System.Drawing.Color.Red; + this.exclamation21.Location = new System.Drawing.Point(1342, 353); + this.exclamation21.Name = "exclamation21"; + this.exclamation21.Size = new System.Drawing.Size(23, 29); + this.exclamation21.TabIndex = 87; + this.exclamation21.Text = "!"; + this.exclamation21.Visible = false; + // + // startTextBox21 + // + this.startTextBox21.Enabled = false; + this.startTextBox21.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.startTextBox21.Location = new System.Drawing.Point(995, 357); + this.startTextBox21.Name = "startTextBox21"; + this.startTextBox21.Size = new System.Drawing.Size(163, 27); + this.startTextBox21.TabIndex = 85; + this.startTextBox21.Visible = false; + this.startTextBox21.AcceptsTabChanged += new System.EventHandler(this.startTextBox21_AcceptsTabChanged); + this.startTextBox21.TextChanged += new System.EventHandler(this.startTextBox21_TextChanged); + this.startTextBox21.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox21_KeyPress); + this.startTextBox21.MouseDown += new System.Windows.Forms.MouseEventHandler(this.startTextBox21_MouseDown); + // + // endTextBox21 + // + this.endTextBox21.Enabled = false; + this.endTextBox21.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.endTextBox21.Location = new System.Drawing.Point(1177, 357); + this.endTextBox21.Name = "endTextBox21"; + this.endTextBox21.Size = new System.Drawing.Size(163, 27); + this.endTextBox21.TabIndex = 86; + this.endTextBox21.Visible = false; + this.endTextBox21.AcceptsTabChanged += new System.EventHandler(this.endTextBox21_AcceptsTabChanged); + this.endTextBox21.TextChanged += new System.EventHandler(this.endTextBox21_TextChanged); + this.endTextBox21.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox21_KeyPress); + this.endTextBox21.MouseDown += new System.Windows.Forms.MouseEventHandler(this.endTextBox21_MouseDown); + // + // label21 + // + this.label21.AutoSize = true; + this.label21.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.label21.Location = new System.Drawing.Point(955, 360); + this.label21.Name = "label21"; + this.label21.Size = new System.Drawing.Size(28, 18); + this.label21.TabIndex = 84; + this.label21.Text = "21"; + this.label21.Visible = false; + // + // exclamation20 + // + this.exclamation20.AutoSize = true; + this.exclamation20.Font = new System.Drawing.Font("Verdana", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.exclamation20.ForeColor = System.Drawing.Color.Red; + this.exclamation20.Location = new System.Drawing.Point(1342, 323); + this.exclamation20.Name = "exclamation20"; + this.exclamation20.Size = new System.Drawing.Size(23, 29); + this.exclamation20.TabIndex = 83; + this.exclamation20.Text = "!"; + this.exclamation20.Visible = false; + // + // startTextBox20 + // + this.startTextBox20.Enabled = false; + this.startTextBox20.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.startTextBox20.Location = new System.Drawing.Point(995, 327); + this.startTextBox20.Name = "startTextBox20"; + this.startTextBox20.Size = new System.Drawing.Size(163, 27); + this.startTextBox20.TabIndex = 81; + this.startTextBox20.Visible = false; + this.startTextBox20.AcceptsTabChanged += new System.EventHandler(this.startTextBox20_AcceptsTabChanged); + this.startTextBox20.TextChanged += new System.EventHandler(this.startTextBox20_TextChanged); + this.startTextBox20.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox20_KeyPress); + this.startTextBox20.MouseDown += new System.Windows.Forms.MouseEventHandler(this.startTextBox20_MouseDown); + // + // endTextBox20 + // + this.endTextBox20.Enabled = false; + this.endTextBox20.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.endTextBox20.Location = new System.Drawing.Point(1177, 327); + this.endTextBox20.Name = "endTextBox20"; + this.endTextBox20.Size = new System.Drawing.Size(163, 27); + this.endTextBox20.TabIndex = 82; + this.endTextBox20.Visible = false; + this.endTextBox20.AcceptsTabChanged += new System.EventHandler(this.endTextBox20_AcceptsTabChanged); + this.endTextBox20.TextChanged += new System.EventHandler(this.endTextBox20_TextChanged); + this.endTextBox20.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox20_KeyPress); + this.endTextBox20.MouseDown += new System.Windows.Forms.MouseEventHandler(this.endTextBox20_MouseDown); + // + // label20 + // + this.label20.AutoSize = true; + this.label20.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.label20.Location = new System.Drawing.Point(955, 330); + this.label20.Name = "label20"; + this.label20.Size = new System.Drawing.Size(28, 18); + this.label20.TabIndex = 80; + this.label20.Text = "20"; + this.label20.Visible = false; + // + // exclamation19 + // + this.exclamation19.AutoSize = true; + this.exclamation19.Font = new System.Drawing.Font("Verdana", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.exclamation19.ForeColor = System.Drawing.Color.Red; + this.exclamation19.Location = new System.Drawing.Point(1342, 293); + this.exclamation19.Name = "exclamation19"; + this.exclamation19.Size = new System.Drawing.Size(23, 29); + this.exclamation19.TabIndex = 79; + this.exclamation19.Text = "!"; + this.exclamation19.Visible = false; + // + // startTextBox19 + // + this.startTextBox19.Enabled = false; + this.startTextBox19.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.startTextBox19.Location = new System.Drawing.Point(995, 297); + this.startTextBox19.Name = "startTextBox19"; + this.startTextBox19.Size = new System.Drawing.Size(163, 27); + this.startTextBox19.TabIndex = 77; + this.startTextBox19.Visible = false; + this.startTextBox19.AcceptsTabChanged += new System.EventHandler(this.startTextBox19_AcceptsTabChanged); + this.startTextBox19.TextChanged += new System.EventHandler(this.startTextBox19_TextChanged); + this.startTextBox19.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox19_KeyPress); + this.startTextBox19.MouseDown += new System.Windows.Forms.MouseEventHandler(this.startTextBox19_MouseDown); + // + // endTextBox19 + // + this.endTextBox19.Enabled = false; + this.endTextBox19.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.endTextBox19.Location = new System.Drawing.Point(1177, 297); + this.endTextBox19.Name = "endTextBox19"; + this.endTextBox19.Size = new System.Drawing.Size(163, 27); + this.endTextBox19.TabIndex = 78; + this.endTextBox19.Visible = false; + this.endTextBox19.AcceptsTabChanged += new System.EventHandler(this.endTextBox19_AcceptsTabChanged); + this.endTextBox19.TextChanged += new System.EventHandler(this.endTextBox19_TextChanged); + this.endTextBox19.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox19_KeyPress); + this.endTextBox19.MouseDown += new System.Windows.Forms.MouseEventHandler(this.endTextBox19_MouseDown); + // + // label19 + // + this.label19.AutoSize = true; + this.label19.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.label19.Location = new System.Drawing.Point(955, 300); + this.label19.Name = "label19"; + this.label19.Size = new System.Drawing.Size(28, 18); + this.label19.TabIndex = 76; + this.label19.Text = "19"; + this.label19.Visible = false; + // + // exclamation18 + // + this.exclamation18.AutoSize = true; + this.exclamation18.Font = new System.Drawing.Font("Verdana", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.exclamation18.ForeColor = System.Drawing.Color.Red; + this.exclamation18.Location = new System.Drawing.Point(1342, 263); + this.exclamation18.Name = "exclamation18"; + this.exclamation18.Size = new System.Drawing.Size(23, 29); + this.exclamation18.TabIndex = 75; + this.exclamation18.Text = "!"; + this.exclamation18.Visible = false; + // + // exclamation17 + // + this.exclamation17.AutoSize = true; + this.exclamation17.Font = new System.Drawing.Font("Verdana", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.exclamation17.ForeColor = System.Drawing.Color.Red; + this.exclamation17.Location = new System.Drawing.Point(1342, 233); + this.exclamation17.Name = "exclamation17"; + this.exclamation17.Size = new System.Drawing.Size(23, 29); + this.exclamation17.TabIndex = 71; + this.exclamation17.Text = "!"; + this.exclamation17.Visible = false; + // + // startTextBox18 + // + this.startTextBox18.Enabled = false; + this.startTextBox18.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.startTextBox18.Location = new System.Drawing.Point(995, 267); + this.startTextBox18.Name = "startTextBox18"; + this.startTextBox18.Size = new System.Drawing.Size(163, 27); + this.startTextBox18.TabIndex = 73; + this.startTextBox18.Visible = false; + this.startTextBox18.AcceptsTabChanged += new System.EventHandler(this.startTextBox18_AcceptsTabChanged); + this.startTextBox18.TextChanged += new System.EventHandler(this.startTextBox18_TextChanged); + this.startTextBox18.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox18_KeyPress); + this.startTextBox18.MouseDown += new System.Windows.Forms.MouseEventHandler(this.startTextBox18_MouseDown); + // + // exclamation16 + // + this.exclamation16.AutoSize = true; + this.exclamation16.Font = new System.Drawing.Font("Verdana", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.exclamation16.ForeColor = System.Drawing.Color.Red; + this.exclamation16.Location = new System.Drawing.Point(1342, 203); + this.exclamation16.Name = "exclamation16"; + this.exclamation16.Size = new System.Drawing.Size(23, 29); + this.exclamation16.TabIndex = 67; + this.exclamation16.Text = "!"; + this.exclamation16.Visible = false; + // + // endTextBox18 + // + this.endTextBox18.Enabled = false; + this.endTextBox18.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.endTextBox18.Location = new System.Drawing.Point(1177, 267); + this.endTextBox18.Name = "endTextBox18"; + this.endTextBox18.Size = new System.Drawing.Size(163, 27); + this.endTextBox18.TabIndex = 74; + this.endTextBox18.Visible = false; + this.endTextBox18.AcceptsTabChanged += new System.EventHandler(this.endTextBox18_AcceptsTabChanged); + this.endTextBox18.TextChanged += new System.EventHandler(this.endTextBox18_TextChanged); + this.endTextBox18.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox18_KeyPress); + this.endTextBox18.MouseDown += new System.Windows.Forms.MouseEventHandler(this.endTextBox18_MouseDown); + // + // label18 + // + this.label18.AutoSize = true; + this.label18.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.label18.Location = new System.Drawing.Point(955, 270); + this.label18.Name = "label18"; + this.label18.Size = new System.Drawing.Size(28, 18); + this.label18.TabIndex = 72; + this.label18.Text = "18"; + this.label18.Visible = false; + // + // startTextBox17 + // + this.startTextBox17.Enabled = false; + this.startTextBox17.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.startTextBox17.Location = new System.Drawing.Point(995, 237); + this.startTextBox17.Name = "startTextBox17"; + this.startTextBox17.Size = new System.Drawing.Size(163, 27); + this.startTextBox17.TabIndex = 69; + this.startTextBox17.Visible = false; + this.startTextBox17.AcceptsTabChanged += new System.EventHandler(this.startTextBox17_AcceptsTabChanged); + this.startTextBox17.TextChanged += new System.EventHandler(this.startTextBox17_TextChanged); + this.startTextBox17.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox17_KeyPress); + this.startTextBox17.MouseDown += new System.Windows.Forms.MouseEventHandler(this.startTextBox17_MouseDown); + // + // exclamation15 + // + this.exclamation15.AutoSize = true; + this.exclamation15.Font = new System.Drawing.Font("Verdana", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.exclamation15.ForeColor = System.Drawing.Color.Red; + this.exclamation15.Location = new System.Drawing.Point(1342, 173); + this.exclamation15.Name = "exclamation15"; + this.exclamation15.Size = new System.Drawing.Size(23, 29); + this.exclamation15.TabIndex = 63; + this.exclamation15.Text = "!"; + this.exclamation15.Visible = false; + // + // endTextBox17 + // + this.endTextBox17.Enabled = false; + this.endTextBox17.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.endTextBox17.Location = new System.Drawing.Point(1177, 237); + this.endTextBox17.Name = "endTextBox17"; + this.endTextBox17.Size = new System.Drawing.Size(163, 27); + this.endTextBox17.TabIndex = 70; + this.endTextBox17.Visible = false; + this.endTextBox17.AcceptsTabChanged += new System.EventHandler(this.endTextBox17_AcceptsTabChanged); + this.endTextBox17.TextChanged += new System.EventHandler(this.endTextBox17_TextChanged); + this.endTextBox17.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox17_KeyPress); + this.endTextBox17.MouseDown += new System.Windows.Forms.MouseEventHandler(this.endTextBox17_MouseDown); + // + // label17 + // + this.label17.AutoSize = true; + this.label17.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.label17.Location = new System.Drawing.Point(955, 240); + this.label17.Name = "label17"; + this.label17.Size = new System.Drawing.Size(28, 18); + this.label17.TabIndex = 68; + this.label17.Text = "17"; + this.label17.Visible = false; + // + // startTextBox16 + // + this.startTextBox16.Enabled = false; + this.startTextBox16.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.startTextBox16.Location = new System.Drawing.Point(995, 207); + this.startTextBox16.Name = "startTextBox16"; + this.startTextBox16.Size = new System.Drawing.Size(163, 27); + this.startTextBox16.TabIndex = 65; + this.startTextBox16.Visible = false; + this.startTextBox16.AcceptsTabChanged += new System.EventHandler(this.startTextBox16_AcceptsTabChanged); + this.startTextBox16.TextChanged += new System.EventHandler(this.startTextBox16_TextChanged); + this.startTextBox16.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox16_KeyPress); + this.startTextBox16.MouseDown += new System.Windows.Forms.MouseEventHandler(this.startTextBox16_MouseDown); + // + // exclamation14 + // + this.exclamation14.AutoSize = true; + this.exclamation14.Font = new System.Drawing.Font("Verdana", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.exclamation14.ForeColor = System.Drawing.Color.Red; + this.exclamation14.Location = new System.Drawing.Point(1342, 143); + this.exclamation14.Name = "exclamation14"; + this.exclamation14.Size = new System.Drawing.Size(23, 29); + this.exclamation14.TabIndex = 59; + this.exclamation14.Text = "!"; + this.exclamation14.Visible = false; + // + // endTextBox16 + // + this.endTextBox16.Enabled = false; + this.endTextBox16.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.endTextBox16.Location = new System.Drawing.Point(1177, 207); + this.endTextBox16.Name = "endTextBox16"; + this.endTextBox16.Size = new System.Drawing.Size(163, 27); + this.endTextBox16.TabIndex = 66; + this.endTextBox16.Visible = false; + this.endTextBox16.AcceptsTabChanged += new System.EventHandler(this.endTextBox16_AcceptsTabChanged); + this.endTextBox16.TextChanged += new System.EventHandler(this.endTextBox16_TextChanged); + this.endTextBox16.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox16_KeyPress); + this.endTextBox16.MouseDown += new System.Windows.Forms.MouseEventHandler(this.endTextBox16_MouseDown); + // + // label16 + // + this.label16.AutoSize = true; + this.label16.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.label16.Location = new System.Drawing.Point(955, 210); + this.label16.Name = "label16"; + this.label16.Size = new System.Drawing.Size(28, 18); + this.label16.TabIndex = 64; + this.label16.Text = "16"; + this.label16.Visible = false; + // + // startTextBox15 + // + this.startTextBox15.Enabled = false; + this.startTextBox15.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.startTextBox15.Location = new System.Drawing.Point(995, 177); + this.startTextBox15.Name = "startTextBox15"; + this.startTextBox15.Size = new System.Drawing.Size(163, 27); + this.startTextBox15.TabIndex = 61; + this.startTextBox15.Visible = false; + this.startTextBox15.AcceptsTabChanged += new System.EventHandler(this.startTextBox15_AcceptsTabChanged); + this.startTextBox15.TextChanged += new System.EventHandler(this.startTextBox15_TextChanged); + this.startTextBox15.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox15_KeyPress); + this.startTextBox15.MouseDown += new System.Windows.Forms.MouseEventHandler(this.startTextBox15_MouseDown); + // + // exclamation13 + // + this.exclamation13.AutoSize = true; + this.exclamation13.Font = new System.Drawing.Font("Verdana", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.exclamation13.ForeColor = System.Drawing.Color.Red; + this.exclamation13.Location = new System.Drawing.Point(1342, 113); + this.exclamation13.Name = "exclamation13"; + this.exclamation13.Size = new System.Drawing.Size(23, 29); + this.exclamation13.TabIndex = 55; + this.exclamation13.Text = "!"; + this.exclamation13.Visible = false; + // + // endTextBox15 + // + this.endTextBox15.Enabled = false; + this.endTextBox15.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.endTextBox15.Location = new System.Drawing.Point(1177, 177); + this.endTextBox15.Name = "endTextBox15"; + this.endTextBox15.Size = new System.Drawing.Size(163, 27); + this.endTextBox15.TabIndex = 62; + this.endTextBox15.Visible = false; + this.endTextBox15.AcceptsTabChanged += new System.EventHandler(this.endTextBox15_AcceptsTabChanged); + this.endTextBox15.TextChanged += new System.EventHandler(this.endTextBox15_TextChanged); + this.endTextBox15.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox15_KeyPress); + this.endTextBox15.MouseDown += new System.Windows.Forms.MouseEventHandler(this.endTextBox15_MouseDown); + // + // label15 + // + this.label15.AutoSize = true; + this.label15.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.label15.Location = new System.Drawing.Point(955, 180); + this.label15.Name = "label15"; + this.label15.Size = new System.Drawing.Size(28, 18); + this.label15.TabIndex = 60; + this.label15.Text = "15"; + this.label15.Visible = false; + // + // startTextBox14 + // + this.startTextBox14.Enabled = false; + this.startTextBox14.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.startTextBox14.Location = new System.Drawing.Point(995, 147); + this.startTextBox14.Name = "startTextBox14"; + this.startTextBox14.Size = new System.Drawing.Size(163, 27); + this.startTextBox14.TabIndex = 57; + this.startTextBox14.Visible = false; + this.startTextBox14.AcceptsTabChanged += new System.EventHandler(this.startTextBox14_AcceptsTabChanged); + this.startTextBox14.TextChanged += new System.EventHandler(this.startTextBox14_TextChanged); + this.startTextBox14.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox14_KeyPress); + this.startTextBox14.MouseDown += new System.Windows.Forms.MouseEventHandler(this.startTextBox14_MouseDown); + // + // endLabel2 + // + this.endLabel2.AutoSize = true; + this.endLabel2.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.endLabel2.Location = new System.Drawing.Point(1175, 94); + this.endLabel2.Name = "endLabel2"; + this.endLabel2.Size = new System.Drawing.Size(38, 18); + this.endLabel2.TabIndex = 51; + this.endLabel2.Text = "End"; + // + // endTextBox14 + // + this.endTextBox14.Enabled = false; + this.endTextBox14.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.endTextBox14.Location = new System.Drawing.Point(1177, 147); + this.endTextBox14.Name = "endTextBox14"; + this.endTextBox14.Size = new System.Drawing.Size(163, 27); + this.endTextBox14.TabIndex = 58; + this.endTextBox14.Visible = false; + this.endTextBox14.AcceptsTabChanged += new System.EventHandler(this.endTextBox14_AcceptsTabChanged); + this.endTextBox14.TextChanged += new System.EventHandler(this.endTextBox14_TextChanged); + this.endTextBox14.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox14_KeyPress); + this.endTextBox14.MouseDown += new System.Windows.Forms.MouseEventHandler(this.endTextBox14_MouseDown); + // + // label14 + // + this.label14.AutoSize = true; + this.label14.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.label14.Location = new System.Drawing.Point(955, 150); + this.label14.Name = "label14"; + this.label14.Size = new System.Drawing.Size(28, 18); + this.label14.TabIndex = 56; + this.label14.Text = "14"; + this.label14.Visible = false; + // + // startTextBox13 + // + this.startTextBox13.Enabled = false; + this.startTextBox13.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.startTextBox13.Location = new System.Drawing.Point(995, 117); + this.startTextBox13.Name = "startTextBox13"; + this.startTextBox13.Size = new System.Drawing.Size(163, 27); + this.startTextBox13.TabIndex = 53; + this.startTextBox13.Visible = false; + this.startTextBox13.AcceptsTabChanged += new System.EventHandler(this.startTextBox13_AcceptsTabChanged); + this.startTextBox13.TextChanged += new System.EventHandler(this.startTextBox13_TextChanged); + this.startTextBox13.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox13_KeyPress); + this.startTextBox13.MouseDown += new System.Windows.Forms.MouseEventHandler(this.startTextBox13_MouseDown); + // + // startLabel2 + // + this.startLabel2.AutoSize = true; + this.startLabel2.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.startLabel2.Location = new System.Drawing.Point(994, 94); + this.startLabel2.Name = "startLabel2"; + this.startLabel2.Size = new System.Drawing.Size(48, 18); + this.startLabel2.TabIndex = 50; + this.startLabel2.Text = "Start"; + // + // endTextBox13 + // + this.endTextBox13.Enabled = false; + this.endTextBox13.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.endTextBox13.Location = new System.Drawing.Point(1177, 117); + this.endTextBox13.Name = "endTextBox13"; + this.endTextBox13.Size = new System.Drawing.Size(163, 27); + this.endTextBox13.TabIndex = 54; + this.endTextBox13.Visible = false; + this.endTextBox13.AcceptsTabChanged += new System.EventHandler(this.endTextBox13_AcceptsTabChanged); + this.endTextBox13.TextChanged += new System.EventHandler(this.endTextBox13_TextChanged); + this.endTextBox13.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox13_KeyPress); + this.endTextBox13.MouseDown += new System.Windows.Forms.MouseEventHandler(this.endTextBox13_MouseDown); + // + // label13 + // + this.label13.AutoSize = true; + this.label13.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.label13.Location = new System.Drawing.Point(955, 120); + this.label13.Name = "label13"; + this.label13.Size = new System.Drawing.Size(28, 18); + this.label13.TabIndex = 52; + this.label13.Text = "13"; + this.label13.Visible = false; + // + // pictureBox1 + // + this.pictureBox1.Location = new System.Drawing.Point(4, 5); + this.pictureBox1.Name = "pictureBox1"; + this.pictureBox1.Size = new System.Drawing.Size(480, 480); + this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.pictureBox1.TabIndex = 101; + this.pictureBox1.TabStop = false; + this.pictureBox1.Click += new System.EventHandler(this.pictureBox1_Click); + // + // rotateImageButton + // + this.rotateImageButton.Font = new System.Drawing.Font("Arial", 27.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.rotateImageButton.Location = new System.Drawing.Point(511, 24); + this.rotateImageButton.Name = "rotateImageButton"; + this.rotateImageButton.Size = new System.Drawing.Size(50, 50); + this.rotateImageButton.TabIndex = 102; + this.rotateImageButton.Text = "↺"; + this.rotateImageButton.UseVisualStyleBackColor = true; + this.rotateImageButton.Click += new System.EventHandler(this.rotateImageButton_Click); + // + // imageProcessingProgressBar + // + this.imageProcessingProgressBar.Location = new System.Drawing.Point(587, 50); + this.imageProcessingProgressBar.Name = "imageProcessingProgressBar"; + this.imageProcessingProgressBar.Size = new System.Drawing.Size(246, 23); + this.imageProcessingProgressBar.TabIndex = 106; + this.imageProcessingProgressBar.Visible = false; + // + // imageProcessingProgressLabel + // + this.imageProcessingProgressLabel.AutoSize = true; + this.imageProcessingProgressLabel.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.imageProcessingProgressLabel.Location = new System.Drawing.Point(584, 25); + this.imageProcessingProgressLabel.Name = "imageProcessingProgressLabel"; + this.imageProcessingProgressLabel.Size = new System.Drawing.Size(249, 18); + this.imageProcessingProgressLabel.TabIndex = 107; + this.imageProcessingProgressLabel.Text = "Progress of image processing"; + this.imageProcessingProgressLabel.Visible = false; + // + // TestStartEndForm + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackColor = System.Drawing.Color.DarkGray; + this.ClientSize = new System.Drawing.Size(1374, 489); + this.Controls.Add(this.imageProcessingProgressLabel); + this.Controls.Add(this.imageProcessingProgressBar); + this.Controls.Add(this.rotateImageButton); + this.Controls.Add(this.pictureBox1); + this.Controls.Add(this.exclamation24); + this.Controls.Add(this.startTextBox24); + this.Controls.Add(this.endTextBox24); + this.Controls.Add(this.label24); + this.Controls.Add(this.exclamation23); + this.Controls.Add(this.startTextBox23); + this.Controls.Add(this.endTextBox23); + this.Controls.Add(this.label23); + this.Controls.Add(this.exclamation22); + this.Controls.Add(this.startTextBox22); + this.Controls.Add(this.endTextBox22); + this.Controls.Add(this.label22); + this.Controls.Add(this.exclamation21); + this.Controls.Add(this.startTextBox21); + this.Controls.Add(this.endTextBox21); + this.Controls.Add(this.label21); + this.Controls.Add(this.exclamation20); + this.Controls.Add(this.startTextBox20); + this.Controls.Add(this.endTextBox20); + this.Controls.Add(this.label20); + this.Controls.Add(this.exclamation19); + this.Controls.Add(this.startTextBox19); + this.Controls.Add(this.endTextBox19); + this.Controls.Add(this.label19); + this.Controls.Add(this.exclamation18); + this.Controls.Add(this.exclamation17); + this.Controls.Add(this.startTextBox18); + this.Controls.Add(this.exclamation16); + this.Controls.Add(this.endTextBox18); + this.Controls.Add(this.label18); + this.Controls.Add(this.startTextBox17); + this.Controls.Add(this.exclamation15); + this.Controls.Add(this.endTextBox17); + this.Controls.Add(this.label17); + this.Controls.Add(this.startTextBox16); + this.Controls.Add(this.exclamation14); + this.Controls.Add(this.endTextBox16); + this.Controls.Add(this.label16); + this.Controls.Add(this.startTextBox15); + this.Controls.Add(this.exclamation13); + this.Controls.Add(this.endTextBox15); + this.Controls.Add(this.label15); + this.Controls.Add(this.startTextBox14); + this.Controls.Add(this.endLabel2); + this.Controls.Add(this.endTextBox14); + this.Controls.Add(this.label14); + this.Controls.Add(this.startTextBox13); + this.Controls.Add(this.startLabel2); + this.Controls.Add(this.endTextBox13); + this.Controls.Add(this.label13); + this.Controls.Add(this.exclamation12); + this.Controls.Add(this.startTextBox12); + this.Controls.Add(this.endTextBox12); + this.Controls.Add(this.label12); + this.Controls.Add(this.exclamation11); + this.Controls.Add(this.startTextBox11); + this.Controls.Add(this.endTextBox11); + this.Controls.Add(this.label11); + this.Controls.Add(this.exclamation10); + this.Controls.Add(this.startTextBox10); + this.Controls.Add(this.endTextBox10); + this.Controls.Add(this.label10); + this.Controls.Add(this.exclamation9); + this.Controls.Add(this.startTextBox9); + this.Controls.Add(this.endTextBox9); + this.Controls.Add(this.label9); + this.Controls.Add(this.exclamation8); + this.Controls.Add(this.startTextBox8); + this.Controls.Add(this.endTextBox8); + this.Controls.Add(this.label8); + this.Controls.Add(this.exclamation7); + this.Controls.Add(this.startTextBox7); + this.Controls.Add(this.endTextBox7); + this.Controls.Add(this.label7); + this.Controls.Add(this.exclamation6); + this.Controls.Add(this.exclamation5); + this.Controls.Add(this.startTextBox6); + this.Controls.Add(this.exclamation4); + this.Controls.Add(this.endTextBox6); + this.Controls.Add(this.label6); + this.Controls.Add(this.startTextBox5); + this.Controls.Add(this.exclamation3); + this.Controls.Add(this.endTextBox5); + this.Controls.Add(this.label5); + this.Controls.Add(this.startTextBox4); + this.Controls.Add(this.exclamation2); + this.Controls.Add(this.endTextBox4); + this.Controls.Add(this.label4); + this.Controls.Add(this.startTextBox3); + this.Controls.Add(this.exclamation1); + this.Controls.Add(this.endTextBox3); + this.Controls.Add(this.label3); + this.Controls.Add(this.startTextBox2); + this.Controls.Add(this.endLabel); + this.Controls.Add(this.endTextBox2); + this.Controls.Add(this.label2); + this.Controls.Add(this.startTextBox1); + this.Controls.Add(this.startLabel); + this.Controls.Add(this.endTextBox1); + this.Controls.Add(this.label1); + this.Controls.Add(this.okButton); + this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow; + this.Name = "TestStartEndForm"; + this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide; + this.Text = "End States"; + this.TopMost = true; + this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.TestStartEndForm_FormClosed); + this.Load += new System.EventHandler(this.TestStartEndForm_Load); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); + this.ResumeLayout(false); + this.PerformLayout(); } @@ -1659,7 +1684,9 @@ namespace TBF.Rig.DataEntry.StandardCamera private System.Windows.Forms.TextBox endTextBox13; private System.Windows.Forms.Label label13; private System.Windows.Forms.PictureBox pictureBox1; - private System.Windows.Forms.Button rotateImageButton; + private System.Windows.Forms.Button rotateImageButton; + private System.Windows.Forms.ProgressBar imageProcessingProgressBar; + private System.Windows.Forms.Label imageProcessingProgressLabel; } } \ No newline at end of file diff --git a/TBF/Rig/Network/Camera/CLP1611/Camera.cs b/TBF/Rig/Network/Camera/CLP1611/Camera.cs index 1527e36c7..159a2105a 100644 --- a/TBF/Rig/Network/Camera/CLP1611/Camera.cs +++ b/TBF/Rig/Network/Camera/CLP1611/Camera.cs @@ -251,7 +251,7 @@ namespace TBF.Rig.Network.Camera.CLP1611 { if ((CameraCfg.DebugLevel != DebugMode.Simulate) && (CameraCfg.DebugLevel != DebugMode.DetectedOff)) { - if (scpThread != null) scpThread.Join(50); + if (scpThread != null && scpThread.IsAlive) scpThread.Join(50); if (rtpListenerThread != null) rtpListenerThread.Join(50); if (msrmntListenerThread != null) msrmntListenerThread.Join(50); diff --git a/TBF/TBF.csproj b/TBF/TBF.csproj index fc043c6f1..9c5fc07c9 100644 --- a/TBF/TBF.csproj +++ b/TBF/TBF.csproj @@ -547,6 +547,8 @@ + + Form