iframe src="http://www.maraton.com.tr/content/468x60_maraton.php" mce_src="http://www.maraton.com.tr/content/468x60_maraton.php" name="maraton" id="maraton" width="468" height="78" marginwidth="0" marginheight="0" hspace="0" vspace="0" scrolling="no" frameborder="0"> BESIKTAS HABERLERI
-
-Private Sub CommandButton2_Click()
Set SA = Worksheets("ISCI_DATA")
SA.Unprotect "1994"
Application.ScreenUpdating = True
Dim i As Integer
If TextBox2.Value = "" Then
MsgBox "Lütfen Personel Bilgilerini Giriniz.", , "Kayıt Hatası"
Exit Sub
End If
'..........................................................
'TextBox kutularındaki verileri hücrelere yazdırır.
ActiveCell.Offset(0, 0).Value = TextBox6.Value
ActiveCell.Offset(0, 1).Value = TextBox1.Value
ActiveCell.Offset(0, 2).Value = TextBox2.Value
ActiveCell.Offset(0, 3).Value = TextBox3.Value
ActiveCell.Offset(0, 4).Value = ComboBox1.Value
ActiveCell.Offset(0, 5).Value = ComboBox2.Value
MsgBox "Kayıt Tamamlandı"
Set SA = Worksheets("ISCI_DATA")
SA.Protect "1994"
Application.ScreenUpdating = True
Unload Me
Sheets("ANA").Select
Exit Sub
End Sub
|