Merhaba, textbox1 içinde "ADANA" yazıyor. Bunun 3. harfini "C" olarak değiştirmek istiyorum. Buradaki 3. sıra, değişebilir. Yani, ben 4 dersem 4. harf, 5 dersem 5. harf değişsin istiyorum. Nasıl yapabilirim? Çok teşekkürler.
DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Private Sub CommandButton1_Click()
If Len(TextBox1) < Val(TextBox2) Then Exit Sub
TextBox1 = WorksheetFunction.Replace(TextBox1, TextBox2, 1, TextBox3)
End Sub
Private Sub CommandButton1_Click()
Dim a(256) As String
uz = Len(TextBox1)
For b = 1 To uz
a(b) = Mid(TextBox1, b, 1)
Next
a(TextBox2) = TextBox3
TextBox1 = Empty
For c = 1 To uz
TextBox1 = TextBox1 & a(c)
Next
End Sub