Polls

Que API tiene más futuro?
 
Inicio arrow Noticias arrow Ver Todas arrow Programacion arrow Aprender C#
Aprender C# PDF Print E-mail
Thursday, 17 February 2005
En este tutorial de codeproject, podras aprender rapidamente C#, si necesitas hacer algo al momento y quieres ponerte a programar algo para ir probando. El articulo hace un repaso por los aspectos del lenguaje mas importantes, parametros, clases, etc.
Comentarios
AgregarnuevoBuscar
Gustavo Palacio   | 201.243.66.xxx | 2008-06-02 08:24:01
Saludos, espero aprender lo necesario para
iniciarme en el mundo de .NET
derethor   | Super Administrator | 2008-06-02 12:31:02
en la web de www.codeproject.com hay mucha info para .net
- cittix2008 - elegir una opcion del combo y   | 200.79.46.xxx | 2008-07-04 20:38:56
private void BindComboBox()
{


// llenar el combobox

OleDbDataAdapter orden1 = new OleDbDataAdapter("Select PAI_NOMBRE from PAISES",canal );
DataSet tabla1 = new DataSet();
OleDbCommand comando = new OleDbCommand("Select PAI_NOMBRE from PAISES", canal);
orden1.Fill(tabla1, "PAISES");
cmbPais.DataSource = tabla1.Tables[0];
cmbPais.Enabled = true;
cmbPais.DisplayMember = "PAI_NOMBRE";

}

private void CargarGrid()
{

OleDbDataAdapter orden = new OleDbDataAdapter("Select est_clave, est_nombre, est_abreviatura from estados", canal);
DataSet tabla = new DataSet();
orden.Fill(tabla, "ESTADOS");
gridEdo.DataSource = tabla;
gridEdo.DataMember = "ESTADOS";

gridEdo.ReadOnly = true;
this.gridEdo.Refresh();
}
Escribir comentario
Nombre:
Email:
 
Website:
Título:
Código UBB:
[b] [i] [u] [url] [quote] [code] [img] 
 
Security Image
Por favor introduce el codigo anti-spam que puedes leer en la imagen.

Copyright (C) 2007 Alain Georgette / Copyright (C) 2006 Frantisek Hliva. All rights reserved.



menéameDigg!Del.icio.us!Google!Technorati!Yahoo!
 
< Prev   Next >

Lista de Correo

visita la lista de correo de codepixel. Es una lista abierta, asi que podrás subscribirte y preguntar tus dudas de programación, compartir tus opiniones, aportar ideas, y formar parte de la comunidad codepixelera.