Hello, I made a userform in Excel on which I will create a few images in runtime. I have the following code:
For intCounter = 1 To 10
strName = "imgTest" & CStr(intCounter)
Set ctl = frmUserForm.Controls.Add("Forms.Image.1", strName, True)
frmUserForm!strName.Height = intCounter * 50
Next
Off course this isn't working (the frmTest!strName.Height part). How can I change the properties of my controls I created in runtime? I don't seem to understand how I can call these controls... please help.
Kind regards
For intCounter = 1 To 10
strName = "imgTest" & CStr(intCounter)
Set ctl = frmUserForm.Controls.Add("Forms.Image.1", strName, True)
frmUserForm!strName.Height = intCounter * 50
Next
Off course this isn't working (the frmTest!strName.Height part). How can I change the properties of my controls I created in runtime? I don't seem to understand how I can call these controls... please help.
Kind regards