I've added some controls dynamically and would like to put the new control under an existing frame.
However, I couldn't use the frame.container = control, cos I guess vba doesn't have this method.
Please advice.
Thanks
Printable View
I've added some controls dynamically and would like to put the new control under an existing frame.
However, I couldn't use the frame.container = control, cos I guess vba doesn't have this method.
Please advice.
Thanks
Have you tried using
frame.controls.add(...)
?
Thank you! It works great!Quote:
Originally posted by wossname
Have you tried using
frame.controls.add(...)
?
try
frame.controls.add(...)
Biswajit das