-
Loaded Controls
Is there any property I can check to determine whether a control is currently loaded on a form?
I have a control array and if the particular control is already loaded I don't want to load it again. If it is not then I load the control and then set it's caption or text property.
Tesita:)
-
The only way is to try to use it (set its caption or text) and trap the possible error (that would raise if it's not loaded)
-
Or use the .Count (or the .Ubound) properties to know the last index. They won't be of much help if some of the indexes might not exist.