Mar 29, 2004 #1 rostulya Technical User Jan 7, 2004 15 US can't find it anywhere. in code, i need to fire an afterupdate event for a combox on another form. how do i do it? thanks in advance
can't find it anywhere. in code, i need to fire an afterupdate event for a combox on another form. how do i do it? thanks in advance
Mar 29, 2004 #2 PHV MIS Nov 8, 2002 53,708 FR Is this another form a subform ? Hope This Help, PH. Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 Upvote 0 Downvote
Is this another form a subform ? Hope This Help, PH. Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884
Mar 29, 2004 Thread starter #3 rostulya Technical User Jan 7, 2004 15 US i'm not sure what you mean by that. i'm need to use this code in onClose event of modal/popup form. Upvote 0 Downvote
Mar 30, 2004 #4 oharab Programmer May 21, 2002 2,152 GB OK, lets say you have 2 forms, frmA and frmB you have a combo called cbo on frmB that has an AfterUpdate event that you wish to fire when frmA closes. On frmB view the code behind the afterUpdate event and change Private Sub cbo_AfterUpdate to Public Sub cbo_AfterUpdate Then on the OnClose event on frmA add Call Forms!frmB.cboAfterUpdate() That should fire it. hth Ben ---------------------------------------------- Ben O'Hara http://www.RobotParade.co.uk"Where are all the stupid people from... ...And how'd they get so dumb?" NoFX-The Decline ---------------------------------------------- Upvote 0 Downvote
OK, lets say you have 2 forms, frmA and frmB you have a combo called cbo on frmB that has an AfterUpdate event that you wish to fire when frmA closes. On frmB view the code behind the afterUpdate event and change Private Sub cbo_AfterUpdate to Public Sub cbo_AfterUpdate Then on the OnClose event on frmA add Call Forms!frmB.cboAfterUpdate() That should fire it. hth Ben ---------------------------------------------- Ben O'Hara http://www.RobotParade.co.uk"Where are all the stupid people from... ...And how'd they get so dumb?" NoFX-The Decline ----------------------------------------------