- Glade.XML xml1 = new Glade.XML (null, "registrar_visitas.glade", "agregar_familiar", null);
- xml1.Autoconnect (this);
-
- Dialog w = (Dialog)xml1.GetWidget ("agregar_familiar");
- w.Title = String.Format ("Agregar Familiar {0} de {1}", n, total);
- w.Run ();
- w.Destroy ();
+ VAgregarFamiliar w = new VAgregarFamiliar (n, total, tipo, nro, c);
+ if (w.Run () == true) {
+ MessageDialog md = new MessageDialog (null,
+ DialogFlags.DestroyWithParent,
+ MessageType.Error,
+ ButtonsType.Close, "No se pudo agregar el familiar!.");
+
+ md.Run ();
+ md.Destroy();
+ return true;
+ }
+ return false;