1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- using System;
- using System.Collections.Generic;
- using System.Collections;
- using System.Linq;
- using System.Text;
- using System.Windows.Forms;
- using System.Drawing;
- using System.Data.SqlClient;
- using System.IO;
- using System.Data;
- using System.Media;
- using System.Timers;
- namespace IControls_ExcelVerify
- {
-
-
- public static class _Data
- {
-
- public static string Program_Version;
-
- public static string Project_Name;
- public static string Project_Path;
- public static string Project_ExcelOpenCheck;
-
-
- public static Hashtable HASH_RECEIVER = new Hashtable();
-
- public static ArrayList LIST_RECEIVER_ID = new ArrayList();
-
- public static Hashtable HASH_XMLDEVTYPE = new Hashtable();
-
- public static ArrayList LIST_XMLDEVTYPE_ID = new ArrayList();
-
-
-
-
- public static ArrayList LIST_XMLRECEIVER_ID = new ArrayList();
-
- public static ArrayList List_ExcelPoint = new ArrayList();
-
- public static ArrayList List_ExcelGroup = new ArrayList();
-
- public static ArrayList List_ExcelMap = new ArrayList();
-
- public static Hashtable HASH_CodePosition = new Hashtable();
- public static ArrayList LIST_CodePosition_NAME = new ArrayList();
- public static ArrayList LIST_CodeDeviceType = new ArrayList();
- public static ArrayList LIST_CodeIOBoard = new ArrayList();
- public static ArrayList LIST_CodeEventType = new ArrayList();
- public static ArrayList LIST_CodeAnalogLevel = new ArrayList();
- public static ArrayList LIST_CodeFireDayTime = new ArrayList();
-
- public static ArrayList LIST_XmlDBNotSave_Receiver = new ArrayList();
-
- public static bool ProJect_Save_Complete = true;
-
-
-
- public static Form MenuActivedForm = null;
-
- public static bool ActiveReportViewer_Enable = false;
-
- public static Hashtable Hash_ImportPoint = new Hashtable();
-
- public static string Temp_DeviceName = null;
- public static string Temp_Position = null;
- public static string Temp_GroupName = null;
- }
-
-
- }
|