Ver Mensaje Individual
  #2 (permalink)  
Antiguo 03/04/2008, 16:52
Avatar de Fann_Lavigne
Fann_Lavigne
 
Fecha de Ingreso: diciembre-2004
Mensajes: 622
Antigüedad: 19 años, 11 meses
Puntos: 12
Re: Evitar que un button obtenga el focus

Hola, lo ke se me ocurre es que puedas hacer esto con javascript.

A tu boton, suponiendo que se llame .btn_SaveChart le agregas el atributo OnFocus y la funcin SederFoco a la cual le pasas el Id del nuevo objeto que tendra el foco. chk_Pieces es un checkBox que tengo en mi pagina que recibira el foco cuando el boton lo reciba.

Código:
Me.btn_SaveChart.Attributes.Add("OnFocus", "SederFoco('chk_Pieces');")
La funcion JavaScrio seria la siguiente:
Código:
function SederFoco(id_obj)
    {
        obj=document.getElementById(id_obj);
        obj.focus();
    }
Espero te sirva y me platikas.
__________________
"Entre Mas Brillante Es Una Mente, Tiene Que Luchar Contra Demonios Internos Mas Poderosos"
[email protected]