Hejsan ALLA ! Kan man lägga till en TextBox eller ComboBox till en PictureBox under körning, och i såfall hur? Du använder nog enklas av kontroll array av vardra typ.PictureBox
MVH PETERSv: PictureBox
Se bara till att du skapar dem i Picture boxen.
Annars så kan du använda dig avv add metoden på Control Collectionen:
<code>
Option Explicit
Private WithEvents Text1 As VB.TextBox
Private WithEvents Combo1 As VB.ComboBox
Private Sub Form_Load()
Set Text1 = Controls.Add("VB.Textbox", "Text1", Picture1)
Text1.Visible = True
Set Combo1 = Controls.Add("VB.ComboBox", "Combo1", Picture1)
Combo1.Visible = True
Combo1.Top = Text1.Height
End Sub
</code>