Problem with setting focus

G

Guest

I have an application with 2 forms. Form1 is the main form and has 2 text
boxes on it. Form2 is a datagrid showing a list of workorders that are to be
manufactured.

The user can use the mouse to select the work order on form2 and data is
populated on form1 with the partid and work order. It is then supposed to
shift Focus to form1 and the text box containing the workorder BUT focus is
being kept on Form2.

What do I need to do to properly get the focus to change?

Heres the code used to change focus:

Form1.txtWorkOrder.Focus ()
 
H

Herfried K. Wagner [MVP]

Darrell Wesley said:
I have an application with 2 forms. Form1 is the main form and has 2 text
boxes on it. Form2 is a datagrid showing a list of workorders that are to
be
manufactured.

The user can use the mouse to select the work order on form2 and data is
populated on form1 with the partid and work order. It is then supposed to
shift Focus to form1 and the text box containing the workorder BUT focus
is
being kept on Form2.

What do I need to do to properly get the focus to change?

Call the form's 'Activate' method prior to calling the control's 'Focus'
method.
 
G

Guest

I added form1.activate to the code but focus is still being retained on
form2. What else may be causing this behavior? (The same application in VB6
works just fine - this is in VB2003)
 
G

Guest

As it turns out the "Click" event and the "CurrentCellChanged" event were
being handled by the same routine. The problem appears to be in the
CurrentCellChanged area.

When I took the "currentCellChanged" out of the picture things worked as
expected but now I have to click in the extreme left hand column where the
row indicator is, clicking inside a cell in the grid has no effect. If I add
a call to the Click event handler the same problem would show up (appeared as
if both events were being riggered).
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top