View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
JakeyC JakeyC is offline
external usenet poster
 
Posts: 107
Default Pull down menu in grid

I don't think you can place an object as if it were in a cell (ie the
'contents' of that cell) but you can certainly place it over a cell and
then refer to it in vba using expressions like:

ComboBox1.Value
or
TextBox3.Text

etc.

Hope this helps.