Kemal Demir
Özel Üye
- Katılım
- 29 Temmuz 2004
- Mesajlar
- 2,108
Arkadaslar Arşive Ulaşamadıgım İçin Bir Şey Sormak İstiyorum.
Private Sub CommandButton1_Click()
'Listboxtan textboxlara gelen verilerde değişiklik yapmak istiyorum.
' noktalı yerlere ne ilave etmem gerekir.
.
.
.
.
Cells(sat, 1).Value = TextBox1.Value
Cells(sat, 2).Value = TextBox2.Value
Cells(sat, 3).Value = TextBox3.Value
End Sub
Private Sub ListBox1_DblClick(ByVal Cancel As MSForms.ReturnBoolean)
'Listboxtaki verileri getiriyor
TextBox1 = ListBox1.Column(0)
TextBox2 = ListBox1.Column(1)
TextBox3 = ListBox1.Column(2)
End Sub
Private Sub UserForm_Initialize()
ListBox1.ColumnCount = 3
ListBox1.RowSource = "a1:c6"
ListBox1.ColumnHeads = False
End Sub
Private Sub CommandButton1_Click()
'Listboxtan textboxlara gelen verilerde değişiklik yapmak istiyorum.
' noktalı yerlere ne ilave etmem gerekir.
.
.
.
.
Cells(sat, 1).Value = TextBox1.Value
Cells(sat, 2).Value = TextBox2.Value
Cells(sat, 3).Value = TextBox3.Value
End Sub
Private Sub ListBox1_DblClick(ByVal Cancel As MSForms.ReturnBoolean)
'Listboxtaki verileri getiriyor
TextBox1 = ListBox1.Column(0)
TextBox2 = ListBox1.Column(1)
TextBox3 = ListBox1.Column(2)
End Sub
Private Sub UserForm_Initialize()
ListBox1.ColumnCount = 3
ListBox1.RowSource = "a1:c6"
ListBox1.ColumnHeads = False
End Sub