Ask Experts Questions for FREE Help!
 

Free Answers in 3 Easy Steps

Register Now
3 Steps
 


Ask QuestionsprogressAnswer QuestionsprogressBuild ReputationprogressBecome an Expert
 
At Ask Me Help Desk you can ask questions in any topic and have them answered for free by our experts. To ask questions or participate in answering them you must register for a free account. By registering you will be able to:
  • Get free answers from experts in any of our 300+ topics.
  • Accept money for answers that you provide.
  • Communicate privately with other members (PM).
  • See fewer ads.
  View Answers    Answer this question    Ask a question  
 

rmolenaar
Jun 5, 2008, 12:57 PM
Hello,

I want to use a for..next-loop to scan several items (e.g. Text/ Color) of a few comboboxes. To make the program efficient, I need something like an index register.
Is it possible to approach any item of an comboxbox by index register?

Greetings Roy

melondotnet
Jun 22, 2008, 05:38 AM
Yes, each value is an item.

For I = 1 To 10

TValue = ComboBox1.Item(i - 1) ' Ithink Items are numbered 0,1,2,3 not 1,2,3,4

Next

Note: If I am on the wrong end of the stick, please say.