• DİKKAT

    DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
    Altın Üyelik Hakkında Bilgi

Userform

Dosyanızı kapatıp aşağıdaki upload sitesine yükleyip,sonrada linkini giriniz.:cool:

DOSYAYI YÜKLE

..
 
Dosyanız indirilemiyor.
Benim verdiğim linke yükleyiniz.:cool:
 
Sanırım son yüklediğiniz linkte virüs var.
Lütfen o linki siliniz.:cool:
 
B sütununa yazılacak
 
Dosyanız linktedir.:cool:

DOSYAYI İNDİR

Kod:
Private Sub CommandButton1_Click()
Dim sonsat As Long
sonsat = Cells(Rows.Count, "A").End(xlUp).Row + 1
If Not IsDate(TextBox1.Value) Then
    MsgBox "Tarih yanlış girildi!" & vbLf & "İşlem iptal edildi!", vbCritical, "UYARI"
    TextBox1.SetFocus
    Exit Sub
End If
Range("A" & sonsat).Value = CDate(TextBox1.Value)
If Not IsNumeric(TextBox3.Value) Then
    MsgBox "Yanlış giriş!" & vbLf & "Lütfen sayı giriniz.!", vbCritical, "UYARI"
    TextBox3.SetFocus
    Exit Sub
End If
If UCase(VBA.Left(TextBox2.Value, 1)) = "S" Then Range("B" & sonsat).Value = TextBox2.Value
If UCase(VBA.Left(TextBox2.Value, 1)) = "V" Then Range("C" & sonsat).Value = TextBox2.Value
Range("D" & sonsat).Value = CDbl(TextBox3.Value)
MsgBox "Veri kaydedildi."
End Sub
 
Geri
Üst