Dynamic Control Set and Analyze Project

I have a window with a control set in it…
At runtime I instantiate new elements of the set (adding and removing as the user dictates)…

this is done by this one command

Dim temp as baseMember // where baseMember is control set, and this appends a new member

“temp” has no other use… ie. it appears in only this statement.

The program works perfectly…

The question is… when I do an “Analyze Project”… this shows up as an “Unused Local Variable”
it is not an ERROR, simply a warning… but is there a way to supress this particular warning (but NOT for other truly unused variables)

Its just the annoying factor…

#pragma unused [varname]

*after you declare the variable