Link to home
Start Free TrialLog in
Avatar of BirdsOfFire1
BirdsOfFire1

asked on

Focus Directly Goes to the MS Flexgrid Entercell Instead of the Current Control LostFocus event

Thanks for any ideas.

I am using VB 6.0.  I have a one column MS Flexgrid where a user can click on a repair service number.  A vehicle may have many repair service numbers and a comment for each repair service number.  The application is designed to record a particular repair service number without a comment.  If user decides to quit and not input any comments for that service number, only the repair service number will be recorded.

Service numbers are entered in the system via a textbox.

If I highlight a repair service number in the MSFlexgrid, the correct comments appear in a textbox below.  That works fine.  The application is also designed to automatically record any data in the textbox after the user closes the form, clicks on the same repair service number or different repair service number in the MSFlexgrid.  

Using a lostfocus event in the textbox to record a comment with that service repair number works fine except when clicking on a different service repair number in the MSFlexgrid.  What's happening is when a different service repair number is chosen in the MSFlexgrid, focus goes directly to the MSFlexgrid entercell before going to the lostfocus event, which is responsible for recording the comment with the appropriate service repair number.

I lose data once focus has left the textbox without recording it with the right service repair number.  A MSFlexgrid entercell event houses code for displaying the next record using the arrow keys or mouse pointer click.

Question??????  What can I put in the MSFlexgrid to prevent the system from going to the MSFlexgrid entercell "first" instead of the lostfocus event of the textbox control?  Please explain!  I was under the impression that a lostfocus event would fire before going to another control, in this case, back to the MSFlexgrid.

Thanks    
Avatar of Valliappan AN
Valliappan AN
Flag of India image

yes, thats right, the lostfocus will be triggered, only after, getting focus to another control.

You could use the Validate event for the text box, which I myself found after a very long time.

if you want details, let me know.

hope this helps,
Cheers.
If you can create a Public variable

Public PrevServNum as String ' or what ever you require

in MSFlexgrid lost focus event set the PrevServNum to the appropriate setting, then use this variable to store the data.

Then when user click on a new grid line your data will still go to the right place
Hornet241,

The question is about lostfocus of TextBox, triggering EnterCell of MSFlexGrid, if I had understood properly.
I would slightly modify Hornet241's thoughts:

Set a flag on the form which is set to TRUE in the EnterCell event of the grid, in the leave cell event of the grid, check the status of this flag, if false call the textbox_LostFocus event explicitly otherwise not. Set the flag to FALSE in the lostfocus event to avoid it being called twice. This should handle moving cells in the grid without the focus ever going to the textbox but will still call the textbox_LostFocus procedure if you do.

Hope this helps.
ASKER CERTIFIED SOLUTION
Avatar of Valliappan AN
Valliappan AN
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
In case you dont wish to do validation/validate event code on pressing some button, say, Cancel, then you could set the CausesValidation property of the Command button to False.

valli_an

>>>The question is about lostfocus of TextBox, triggering EnterCell of MSFlexGrid, if I had understood
properly.

As I understand it, it's above the Entercell event firing before the lost focus event and changing the row of the flexgrig before an update in the textbox lost focus

ya, Hornet241 you are right. I mentioned of Validate event, so that the lostfocus code, if put in Validate event, then the Validate event will trigger before the EnterCell event of the Flexgrid. So, no problem, because of the lostfocus event.

Thats what I meant. Hope I had understood it properly.

You could check with the MS link, that I had provided, it says, the lostfocus event occurs only after another control gets focus, to avoid that you could use Validate event.

Thank you,
Cheers.
ya, Hornet241 you are right. I mentioned of Validate event, so that the lostfocus code, if put in Validate event, then the Validate event will trigger before the EnterCell event of the Flexgrid. So, no problem, because of the lostfocus event.

Thats what I meant. Hope I had understood it properly.

You could check with the MS link, that I had provided, it says, the lostfocus event occurs only after another control gets focus, to avoid that you could use Validate event.

Thank you,
Cheers.
Avatar of BirdsOfFire1
BirdsOfFire1

ASKER

All of the participates contributed, but I liked the validate event better.  Used it and it worked.

Thanks Again