<div dir="ltr"><div dir="ltr"><br></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">Il giorno mar 1 feb 2022 alle ore 16:57 <<a href="mailto:roberto.premoli@tiscali.it">roberto.premoli@tiscali.it</a>> ha scritto:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><u></u>
<div>
<pre>Usually i create object one by one using graphila placemen of object,<br>but now i need a lot of buttons, label, ecc in my aplication,<br>so i create them "in code" to have an array of them.<br>here ad example with only 5 buttons:<br><br>Private btns[5] As Button<br>Private matrice_testo[5] As String<br>  <br>Public Sub Form_Open()...<br></pre><br>the code place the buttons as I want  but now i don't know how to place code inside the "click", doubleclick", "got focus" ecc and other events of the buttons. Can someone tell me how? <br>many thanks.<br>Roberto
</div>
</blockquote><div><br></div><div>Change Form_Open like this<br>' ...<br>matrice_testo[0] = "A"<br>matrice_testo[1] = "B"<br>matrice_testo[2] = "C"<br>matrice_testo[3] = "D"<br>matrice_testo[4] = "E"<br><br>For n = 0 To 4<br>  With btns[n] = New Button(FMain) As "btns"<br>  Â  .Name = matrice_testo[n]<br>  End With<br>Next<br>' ...<br><br><br>Public Sub btns_Click()<br>  <br>  Print Last.name<br>  <br>End<br><br>Regards<br>Gianluigi <br></div></div></div>