View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
lwhite lwhite is offline
external usenet poster
 
Posts: 2
Default trying to populate a variable from a combo box

I am trying to fill a variable with the value from a
combo box.

I tried the following

Dim myDesc as String
myDesc = Me.ComboBox2

and then I tried
Dim myDesc as String
Set myDesc = Me.ComboBox2

Could someone please tell me what I am doing wrong?
LWhite