Set focus to listbox

Theo

Newcomer
Joined
Aug 11, 2006
Messages
14
Location
Netherlands
Hi all,

How can I set the focus to a listbox?

In the current situation, the listbox loses focus when one triggers the SelectedIndexChanged event.


Thanks,

Theo
 
I already managed to achieve it by using a JavaScript function

Code:
function SetFormFocus() {
    document.forms[0].listbox1.focus();
}
 
Back
Top