DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Sub deneme5()
say = 0
Dim Picture As Object
For Each Picture In ActiveSheet.Shapes
If Picture.Type = 17 Then
say = say + 1
ActiveSheet.Shapes(Picture.Name).OLEFormat.Object.Name = "xlms" & say
End If
Next Picture
say = 0
For Each Picture In ActiveSheet.Shapes
If Picture.Type = 17 Then
say = say + 1
ActiveSheet.Shapes(Picture.Name).OLEFormat.Object.Name = "[COLOR="Red"]Metin[/COLOR]" & say
End If
Next Picture
MsgBox "işlem tamam"
End Sub
Private Sub CommandButton1_Click()
If OptionButton1 = True Then: basla = 1: son = 24
If OptionButton2 = True Then: basla = 25: son = 48
If OptionButton3 = True Then: basla = 41: son = 60
If OptionButton4 = True Then: basla = 61: son = 80
For i = basla To son
say = say + 1
Sheets("Sayfa1").Shapes("[COLOR="Red"]Metin[/COLOR]" & i).OLEFormat.Object.Characters.Text = Me("TextBox" & say)
Next i
End Sub