Ciao a tutti, ho provato la proprietà autoresize con un container border ma il risultato è che le dimensioni non cambiano
Public Sub StripFatturazione()
Dim CornicePagamento As Panel
Dim LIva As Label
StripPrincipale.index = 1
CornicePagamento = New Panel(StripPrincipale)
LIva = New Label(CornicePagamento)
With CornicePagamento
.x = 10
.y = 10
.Border = Border.Etched
.AutoResize = True
End With
With LIva
.x = 10
.y = 10
.text = "IVA:"
.AutoResize = True
End With
End
avete idea perchè?