Aug 24, 2008 #1 Domino2 Technical User Jun 8, 2008 475 GB I am trying to force a click event on a listbox. The listbox is on an unrelated form to a subform where I am trying to call the event. The code below errors, goes to red! Forms(stDocName)!List25B_Click Any ideas, thanks
I am trying to force a click event on a listbox. The listbox is on an unrelated form to a subform where I am trying to call the event. The code below errors, goes to red! Forms(stDocName)!List25B_Click Any ideas, thanks
Aug 24, 2008 1 #2 PHV MIS Nov 8, 2002 53,708 FR MAke the event procedure Public instead of Private, and then: Forms!NameOfMainform.List25B_Click Hope This Helps, PH. FAQ219-2884 FAQ181-2886 Upvote 0 Downvote
MAke the event procedure Public instead of Private, and then: Forms!NameOfMainform.List25B_Click Hope This Helps, PH. FAQ219-2884 FAQ181-2886
Aug 24, 2008 Thread starter #3 Domino2 Technical User Jun 8, 2008 475 GB Many thanks, worked! Upvote 0 Downvote