- Codice: Seleziona tutto
Private Sub CommandButton1_Click()
CuH = PRESENTAZIONE.Height 'dimensioni iniziali
CuW = PRESENTAZIONE.Width
'Resize Form
PRESENTAZIONE.Top = Application.Top
PRESENTAZIONE.Left = Application.Left
PRESENTAZIONE.Width = Application.Width
PRESENTAZIONE.Height = Application.Height
'Resize contenuto
ZoW = PRESENTAZIONE.Width / CuW 'calcola zoom
ZoH = PRESENTAZIONE.Height / CuH
If ZoW < ZoH Then RZoom = ZoW Else RZoom = ZoH
PRESENTAZIONE.Zoom = RZoom * 100
PRESENTAZIONE.Show
End Sub
Nella UserForm visualizzo un testo di circa 7000 caratteri scritti nella proprietà Text di una TextBox.
All’apertura il testo si vede correttamente ma già nella sua parte finale, tant’è che anche la barra di scorrimento verticale è tutta bassa.
Chiedo: come si potrebbe invertire l’effetto?
Grazie in anticipo per eventuali suggerimenti.