bulentkars
Altın Üye
- Katılım
- 5 Ağustos 2005
- Mesajlar
- 674
- Excel Vers. ve Dili
- 2003 TR
DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Private Sub CommandButton1_Click()
If Not IsNumeric(TextBox2.Text) Then
MsgBox "Stok miktarı sayısal bir değer olmalıdır..!!", vbCritical, "UYARI"
TextBox2.SetFocus
Exit Sub
End If
Cells(ComboBox2.ListIndex + 2, "A").Value = CDbl(TextBox2.Text)
End Sub
Private Sub UserForm_Click()
End Sub
Private Sub UserForm_Initialize()
ComboBox2.RowSource = "E2:E" & Cells(65536, "E").End(xlUp).Row
ComboBox2.ListIndex = 0
End Sub