acebeci
Altın Üye
- Katılım
- 25 Ağustos 2007
- Mesajlar
- 326
- Excel Vers. ve Dili
- ofis excel 2010 türkçe
- Altın Üyelik Bitiş Tarihi
- 03-11-2026
çok özür dileyerek birşey öğrenebilirmiyim.Kod ları yazarken neye göre paragrafın içine dogru kayılıyor bunu neye göre yapıyoruz.Aşagıdaki tamamen bir örnek sadece ne anlatmak istediğimi anlatmak için formdan ekledim.
[/QUOTE]
Kod:
Private Sub CommandButton1_Click()
Set gr = Sheets("GIRIS")
If TextBox1.Value = Empty Then
MsgBox "Ürün kodu boş olamaz..!!", vbCritical, Application.UserName
TextBox1.SetFocus
Set gr = Nothing
Exit Sub
End If
sat = gr.Cells(65536, "A").End(xlUp).Row + 1
For i = 1 To 6
If i < 5 Then
gr.Cells(sat, i).Value = Controls("TextBox" & i).Value
Controls("TextBox" & i).Value = Empty
End If
If i = 5 Then
gr.Cells(sat, "E").Value = CDate(Format(TextBox5.Value, "dd.mm.yyyy"))
TextBox5.Value = Empty
End If
If i = 6 Then
gr.Cells(sat, "F").Value = TextBox6.Value * 1
gr.Cells(sat, "F").NumberFormat = "#,##0.00"
TextBox6.Value = Empty
End If
Next
TextBox1.SetFocus
MsgBox "Kayıt yapıldı..!!", vbOKOnly + vbInformation, Application.UserName
Set gr = Nothing
End Sub