Skip to main content

AccessTr.neT


Listboxtan Userform Textboxa Veri Alma

Listboxtan Userform Textboxa Veri Alma

#2
Private Sub ListBox1_DblClick(ByVal Cancel As MSForms.ReturnBoolean)
       
    With UserForm2
        .TextBox_SIRA.Value = Me.ListBox1.List(Me.ListBox1.ListIndex, 0)
        .TextBox_TARIH.Value = Format(Me.ListBox1.List(Me.ListBox1.ListIndex, 1), "dd.mm.yyyy")
        .Show
    End With
    Unload Me
   
End Sub
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
RE: Listboxtan Userform Textboxa Veri Alma - Yazar: feraz - 30/04/2020, 22:49
Task