Thread: Referencing
View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Chip Pearson Chip Pearson is offline
external usenet poster
 
Posts: 7,247
Default Referencing

I misread your question. You can reference the control at runtime
with code like

Worksheets(1).OLEObjects("ComboBox1").Object.AddIt em "asdf"



--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com


"Paul W Smith" wrote in message
...
On a worksheet called TestA, I have a combo called 'Player1'
(=EMBED("Forms.ComboBox.1",""))

How do I refer to it's properties from the change event of a
control on
another page?

i.e I want to set Player1's ListFillRange property when a
combobox on
another page changes.

Paul Smith