Ubound of a control array

Started by Heinz Grandjean, January 26, 2014, 11:51:22 PM

Previous topic - Next topic

Heinz Grandjean

Hello,
is there any way to find out the Ubound of a FFL control array?
Thank you,

Heinz Grandjean

Carl Oligny

I created a form with 3 labels named lbl in a control array.

This code worked:

   Local l As Long
   
   l =  UBound(HWND_FORM1_LBL())

Hope this helps.

Heinz Grandjean

Thank you, Carl!

It does the job!

Heinz Grandjean