Ver Mensaje Individual
  #2  
Antiguo 25-12-2009
Tauro78 Tauro78 is offline
Miembro
 
Registrado: sep 2006
Posts: 88
Reputación: 18
Tauro78 Va por buen camino
ya lo arregle:
Código Delphi [-]
 
privatevoid treeView1_NodeMouseClick(object sender, TreeNodeMouseClickEventArgs e)
{
if (treeView1.Nodes[0].Nodes[2].Nodes[0].IsSelected)
  {    
    frmCuentasAltas frmCA = frmCuentasAltas.InstanciaSingleton();
    frmCA.MdiParent = this.MdiParent;
    frmCA.Show(Owner); 
  }
}
Responder Con Cita