Simple Form Focus Question [Resolved]
Hi, I have a would-be simple question about setting which form has the focus.
Within my project I have two forms: frmQuery and frmResults and on frmQuery is a button called cmdExecute, which executes a query.
After this button has been clicked, I simply want to give the focus to frmResults.
Any ideas? :)
Re: Simple Form Focus Question
Re: Simple Form Focus Question
frmresults.show
will work :)
Pino
edit -
Quote:
Originally Posted by Pasvorto
show.frmResults
i dont think that works.
Re: Simple Form Focus Question
Thanks to both of you - the problem was that I had frmQuery.Show method after frmResults.Show!
Oops...
(and I think Pasvorto meant Show frmResults)