
control creation in the same manner as VB. But with a little
creativity, you can accomplish practically the same thing.
The Traditional Method
The main thing to remember about controls is that they are
objects. As objects, they have properties and methods you can
manipulate at design time or run time to achieve the desired
results. This chapter presents two common ways to create
controls at run time in VBA. Virtually any run-time control
creation will use a variation of one of these two methods. The
most common way (the traditional way) is to create a control
object variable to contain the run-time control, as shown in
Listing 9-1 below. Figure 9-1 shows ...