
Private Sub TextBox1_LostFocus() Sheets(2).TextBox1.Value = Sheets(1).TextBox1.Value Sheets(3).TextBox1.Value = Sheets(1).TextBox1.Value End Sub |
Private Sub Worksheet_Activate()
Application.ScreenUpdating = False
Worksheets("Foglio2").Shapes("CasellaDiTesto 1").TextFrame.Characters.Text = Worksheets("Foglio1").Shapes("CasellaDiTesto 1").TextFrame.Characters.Text
Application.ScreenUpdating = True
End Sub |
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Application.ScreenUpdating = False
Worksheets("Foglio2").Shapes("CasellaDiTesto 1").TextFrame.Characters.Text = Worksheets("Foglio1").Shapes("CasellaDiTesto 1").TextFrame.Characters.Text
Application.ScreenUpdating = True
End Sub
|
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Application.ScreenUpdating = False
Worksheets("Foglio2").Shapes("CasellaDiTesto 1").TextFrame.Characters.Text = Worksheets("Foglio1").Shapes("CasellaDiTesto 1").TextFrame.Characters.Text
Application.ScreenUpdating = True
End Sub
|
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Application.ScreenUpdating = False
For i = 2 To ThisWorkbook.Sheets.Count
Worksheets("Foglio" & i).Shapes("CasellaDiTesto 1").TextFrame.Characters.Text = Worksheets("Foglio1").Shapes("CasellaDiTesto 1").TextFrame.Characters.Text
Next i
Application.ScreenUpdating = True
End Sub
|
