View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
[email protected] phoudha@gmail.com is offline
external usenet poster
 
Posts: 1
Default Fill a combobox preserving characters format

Hi All,

I am new with VBA for Excel application.
I want fill a combo box with a range of cells containing charaters.
Some of them are subscript others superscript. The problem is, when I
fill out the combo box, the format of the charcters in superscript or
subscript is lost.
How can I preserve the format when I fill th combo box.
Now I am using the follwing code:

For i = 1 To 10 Step 1
ZoneListe_1.AddItem Sheets("Feuil1").Cells(i, 1)
Next
Thanks a lot.
Best.
Defré