Código C++:
Lo que hace segun yo, es cargar el "ultimo ID" y le suma 1, para asi ingresar un nuevo usuario, pero cuando el ID llega 2 no, pasa de ahi, y no se cual es el error ??Ver original
private void Form1_Load(object sender, EventArgs e) { Conexion.Open(); Comando.CommandText = "SELECT id FROM nombres"; Comando.Connection = Conexion; lector = Comando.ExecuteReader(); using(lector) if (lector.Read()) { txbID.Text = lector["id"].ToString(); Conexion.Close(); } int valor=1+Convert.ToInt32(txbID.Text); txbID.Text = Convert.ToString(valor);
De antemano grax por la ayuda