Exemple #1
0
        /// <summary>
        /// Method load list of packs from the server
        /// </summary>
        public void Load_Packs_List()
        {
            // Create instance of Database Connection
            Classes.Database conn = new Classes.Database();

            // Load list of packs from server
            conn.Select_Packs(ref Packs_List);

            // Check error flag
            if (conn.Error_Flag)
            {
                // Set main error flag as true
                Error_Flag = true;
                // Set main error message
                Error_Message = conn.Error_Message;
            }
        }