- Katılım
- 2 Ocak 2022
- Mesajlar
- 83
- Excel Vers. ve Dili
- 2007Türkçe
Merhaba,
Private Sub CommandButton5_Click()
'listbox aktarım
ListBox1.AddItem
ListBox1.List(ListBox1.ListCount - 1, 0) = TextBox9.Value
ListBox1.List(ListBox1.ListCount - 1, 1) = TextBox10.Value
ListBox1.List(ListBox1.ListCount - 1, 2) = TextBox11.Value
ListBox1.List(ListBox1.ListCount - 1, 3) = TextBox14.Value
TextBox10.Text = ""
TextBox9.Text = ""
TextBox11.Text = ""
TextBox14.Text = ""
TextBox12.Text = ""
TextBox13.Text = ""
End If
TextBox16.Value = ListBox1.ListCount - 1
end sub
Private Sub UserForm_Initialize()
With ListBox1
'ListBox1.ColumnHeads = True
ListBox1.ColumnCount = 4
ListBox1.ColumnWidths = "70;60;250;30"
.AddItem
.List(0, 0) = "Barkod"
.List(0, 1) = "Ürün Kodu"
.List(0, 2) = "Ürün Adı"
.List(0, 3) = "Adet"
End With
End Sub
Buraya kadar sorun yok. Yapmak istediğim listbox1 içindeki 4 sütunda bulunan adet toplamını textbox17 ye yazdırmak. Forum üzerinden bir sürü örnek inceledim, ama
bir türlü uyarlayamadım. Textbox14 den gelen adet sayılarını rakam olarak görmüyor herhalde. Sayı olarak göstermek istediğimde hata veriyor. Bu toplamı alma ihtimalim varmı?
Private Sub CommandButton5_Click()
'listbox aktarım
ListBox1.AddItem
ListBox1.List(ListBox1.ListCount - 1, 0) = TextBox9.Value
ListBox1.List(ListBox1.ListCount - 1, 1) = TextBox10.Value
ListBox1.List(ListBox1.ListCount - 1, 2) = TextBox11.Value
ListBox1.List(ListBox1.ListCount - 1, 3) = TextBox14.Value
TextBox10.Text = ""
TextBox9.Text = ""
TextBox11.Text = ""
TextBox14.Text = ""
TextBox12.Text = ""
TextBox13.Text = ""
End If
TextBox16.Value = ListBox1.ListCount - 1
end sub
Private Sub UserForm_Initialize()
With ListBox1
'ListBox1.ColumnHeads = True
ListBox1.ColumnCount = 4
ListBox1.ColumnWidths = "70;60;250;30"
.AddItem
.List(0, 0) = "Barkod"
.List(0, 1) = "Ürün Kodu"
.List(0, 2) = "Ürün Adı"
.List(0, 3) = "Adet"
End With
End Sub
Buraya kadar sorun yok. Yapmak istediğim listbox1 içindeki 4 sütunda bulunan adet toplamını textbox17 ye yazdırmak. Forum üzerinden bir sürü örnek inceledim, ama
bir türlü uyarlayamadım. Textbox14 den gelen adet sayılarını rakam olarak görmüyor herhalde. Sayı olarak göstermek istediğimde hata veriyor. Bu toplamı alma ihtimalim varmı?