This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public void LlenarComboMotivos() | |
| { | |
| try | |
| { | |
| //this.cbMotivo.Items.Clear(); | |
| this.cbMotivo.DataSource = null; | |
| OracleDataAdapter daEmp = new OracleDataAdapter("select IDMOT, MOTNUM||' : '||MOT AS MOT, MOTNUM, FECREG, USENAM, HOSTNAME from SIA_MOTIVOS order by MOTNUM asc", cls_DatosLolcli.cadenaconexion); | |
| DataSet dsEmp = new DataSet("SIA_MOTIVOS"); | |
| daEmp.Fill(dsEmp, "SIA_MOTIVOS"); | |
| DataTable dtEmp = dsEmp.Tables["SIA_MOTIVOS"]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| private void txtNumero_KeyPress(object sender, KeyPressEventArgs e) | |
| { | |
| if (e.KeyChar != (char)44 && e.KeyChar != (char)46 && !Char.IsDigit(e.KeyChar) && e.KeyChar != (char)8 && e.KeyChar != (char)47) | |
| { | |
| e.Handled = true; | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 1.- configurar variables locales | |
| $ git config --global user.name "tu_usuario" | |
| $ git config --global user.email tu@email.com | |
| /* | |
| Generar clave ssh : | |
| ssh-keygen | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| Autor: Joel Fernandez | |
| Ejercicio: Implementacion de una Pila usando Clases | |
| IDE: Codeblocks | |
| Web: http://codebotic.blogspot.com | |
| */ | |
| #include<iostream> | |
| #include<cstdlib> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| Name: Convertir expresion matematica en notacion infija a postfija | |
| Author: Joel Fernandez | |
| Date: 16/11/12 20:29 | |
| Description: expresion matematica en notacion infija y la transforma a postfija | |
| web: http://codebotic.blogspot.com | |
| Compartido para casicodigo.blogspot.com | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| Autor: Joel Fernandez | |
| Fecha: 11/10/14 | |
| Tema : Listas Enlazadas Simples | |
| Ejercicio 2 : Almacenar una lista de reales y reportarlos en forma ordenada. | |
| */ | |
| #include <iostream> | |
| #include <stdlib.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| Autor: Joel Fernandez | |
| Curso: Estructura de Datos | |
| Ejercicio: IMPLEMENTACION DE UNA LISTA CIRCULAR | |
| Descripcion: funciones inserta, elimina, busca y elimina | |
| IDE: CodeBlocks | |
| Pagina Web: http://codebotic.blogspot.com | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| Autor: Joel Cesar Fernandez Segura | |
| Curso: Tecnicas De Construccion de Programas | |
| Ejercicio: Implementacion de un Automata Con Pila | |
| IDE: CodeBlocks | |
| Pagina Web: http://codebotic.blogspot.com | |
| */ | |
| #include<iostream> | |
| #include<cstdlib> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Autor: Joel Cesar Fernandez Segura | |
| Fecha: 28/08/2014 | |
| Tema: Recursividad | |
| Ejercicio 2: Suma de los n primeros numeros naturales | |
| IDE: CodeBlocks | |
| Pagina Web: http://codebotic.blogspot.com | |
| */ | |
| #include<iostream> | |
| #include<cstdlib> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| Autor: Joel Cesar Fernandez Segura | |
| Curso: Estructura de Datos | |
| Ejercicio: REGISTRAR INTEGRANTES DE FAMILIA | |
| IDE: CodeBlocks | |
| Pagina Web: http://codebotic.blogspot.com | |
| */ | |
| #include<iostream> | |
| #include<cstdlib> |