Example #1
0
        public FormGISView(String strNetworkName, Hashtable htAttributeYears)
        {
            InitializeComponent();
            //normalButtonColor = btnPan.BackColor;
            m_strNetwork       = strNetworkName;
            m_htAttributeYears = htAttributeYears;
            String  strQuery = "Select NETWORKID From NETWORKS Where NETWORK_NAME = '" + m_strNetwork + "'";
            DataSet ds       = DBMgr.ExecuteQuery(strQuery);

            m_strNetworkID = ds.Tables[0].Rows[0].ItemArray[0].ToString();

            Global.LoadAttributes();

            // Good. Create the GISNetworkSettings so the user can save GIS attributes
            m_gisNetworkSettings = new GISNetworkSettings();
        }
Example #2
0
 public void AddGISNetworkSettings(String network, GISNetworkSettings gisNetworkSettings)
 {
     AddSetting(network, gisNetworkSettings);
 }