private void llena_produccion()
        {
            util util = new util();
            int  e    = 0;

            do
            {
                this.cnn.ConnectionString = util.con_string(e);
                this.produccion(this.cnn);
                checked { ++e; }
            }while (e <= 2);
            this.crea_columna("TOTALES");
            this.totales();
        }