This info has helped me as well. For some reason, however. If I use a variable to hold the SQL, it will not work. If I define the SQL directly in the second line, it works fine.
ie
strSQL = "Select......"
me.listboxname.rowsource = strSQL
Doesn't work
but
me.listboxname.rowsource = "Select......"
Does Work