private void button3_Click(object sender, EventArgs e) { string PrestarLey; PrestarLey = richTextBox1.Text; if (PrestarLey == "") { MessageBox.Show("Ingrese Ley que desea Prestar."); } else { if (PrestarLey != "") { Ley nuevaLey = new Ley(); nuevaLey.setinfoDeLey(PrestarLey); nuevaLey.asignarCopias(); for (int i = 0; i < 500; i++) { biblioLeyes[i] = nuevaLey; listBox1.Items.Add(PrestarLey); i = 500; } } } }
private void button1_Click(object sender, EventArgs e) { string PrestarLey; PrestarLey = richTextBox1.Text; if (PrestarLey == "") { MessageBox.Show("Ingrese Ley que desea Prestar."); } else { if (PrestarLey != "") { Ley nuevaLey = new Ley(); nuevaLey.setinfoDeLey(PrestarLey); nuevaLey.asignarCopias(); for (int i = 0; i < 500; i++) { biblioLeyes[i] = nuevaLey; listBox1.Items.Remove(PrestarLey); i = 500; } } MessageBox.Show("Ley Prestada exitosamente."); menu regresomeno = new menu(); regresomeno.Show(); this.Hide(); } }
private void button1_Click(object sender, EventArgs e) { string DevolverLey; DevolverLey = richTextBox1.Text; if (DevolverLey == "") { MessageBox.Show("Ingrese Ley a devolver."); } else { if (DevolverLey != "") { Ley nuevaLey = new Ley(); nuevaLey.setinfoDeLey(DevolverLey); nuevaLey.asignarCopias(); for (int i = 0; i < 500; i++) { biblioLeyes[i] = nuevaLey; listBox1.Items.Add(DevolverLey); i = 500; } } MessageBox.Show("Ley fue devuelta con exito."); menu regresomeno = new menu(); regresomeno.Show(); this.Hide(); } }
public void push(Ley l) { if (isFull()==true) { MessageBox.Show("no hay espacio para una nueva ley"); } else { t++; leyes[t] = l; } }
public Ley pop ( ) { Ley lt = new Ley(); lt = null; if (isEmpty() == true) { MessageBox.Show("no hay leyes en el sistema"); return lt; } else { lt = leyes[t]; t--; return lt; } }
private void button1_Click(object sender, EventArgs e) { string IngreseLey; IngreseLey = txtIngreseLey.Text; if (IngreseLey == "") { MessageBox.Show("Ingrese Nueva Ley."); } else { if (IngreseLey != "") { Ley nuevaLey = new Ley(); nuevaLey.setinfoDeLey(IngreseLey); nuevaLey.asignarCopias(); for (int i = 0; i < 500; i++) { if (biblioLeyes[i] == null) { biblioLeyes[i] = nuevaLey; } else { MessageBox.Show("no hay espacio para una nueva ley"); } } MessageBox.Show("Ley Creada con Exito."); menu m = new menu(users, grupos, usuarioactual, biblioLeyes); m.Show(); this.Hide(); } } }