Skip to main content

AccessTr.neT


Access' Te Class Module Oluşturma

Access' Te Class Module Oluşturma

#3
Bir module ekleyin ve aşağıdaki kodu ekleyin
Kod:
Option Compare Database
Option Explicit

Dim WithEvents txtBoxes As Access.Forms.Controls

Private Sub Form_Load()
    Set txtBoxes = Me.Controls
End Sub

Private Sub txtBoxes_Enter(Index As Integer)
    Dim currentTextBox As Control
    Set currentTextBox = Me.Controls(txtBoxes(Index).Name)
    
    If currentTextBox.BackColor = -2147483643 Then
        currentTextBox.BackColor = 0
    ElseIf currentTextBox.BackColor = 0 Then
        currentTextBox.BackColor = -2147483643
    End If
End Sub

bu kod form yüklenirken textbox kontrollerini tanımlayıp herbirinin Enter olayını izleryecektir. Herhangi bir textbox tıklandığında da txtBoxes_Enter olayı tetiklenecek ve arka plan rengini değiştirecektir.
Cevapla

Bir hesap oluşturun veya yorum yapmak için giriş yapın

Yorum yapmak için üye olmanız gerekiyor

ya da

Bu Konudaki Yorumlar
Access' Te Class Module Oluşturma - Yazar: truhi - 17/07/2023, 17:17
RE: Access' Te Class Module Oluşturma - Yazar: truhi - 18/07/2023, 13:51
RE: Access' Te Class Module Oluşturma - Yazar: atoykan - 19/07/2023, 08:30
RE: Access' Te Class Module Oluşturma - Yazar: truhi - 20/07/2023, 17:10
RE: Access' Te Class Module Oluşturma - Yazar: feraz - 23/07/2023, 14:21
RE: Access' Te Class Module Oluşturma - Yazar: feraz - 23/07/2023, 14:30
RE: Access' Te Class Module Oluşturma - Yazar: truhi - 24/07/2023, 23:32
RE: Access' Te Class Module Oluşturma - Yazar: feraz - 25/07/2023, 00:35
Task