Immediate Window code --> listbox value

C

CinqueTerra

I am attempting to debug my form. I know there is a way to use the immediate
window to return the values of listboxes (lstRMonth, lstRYear) on my open
form.

Thanks in advance!
 
C

chris.nebinger

?Screen.ActiveForm.Controls("lstRMonth"),
Screen.ActiveForm.Controls("lstRYear")


Chris Nebinger
 
C

chris.nebinger

?Forms("FormName").Controls("lstRMonth"),Forms("FormName"),Controls("lstRYear")


Chris Nebinger
 
Top