sql >> Database >  >> RDS >> Sqlserver

Prestatieprobleem in dynamische dropdown-zoeklijst in Excel

Ik ken de prestaties niet, maar probeer het volgende eens. Uw gegevens zouden vanaf rij 2 in blad "db" moeten staan. In plaats van een combobox plaats ik een tekstvak (TextBox1 ) en een lijst (ListBox1 ) in een gebruikersformulier.

Private Sub TextBox1_Change()
    Dim v As String
    Dim YourInput As String
    Dim iIdx As Long
    Dim CharNumber As Integer

    YourInput = TextBox1.Text

    Application.ScreenUpdating = False
    Application.Calculation = xlCalculationManual
    Application.EnableEvents = False

    ListBox1.Clear

    lLastRow = Worksheets("db").Cells(3, 1).End(xlDown).Row
    CharNumber = Len(YourInput)

    For iIdx = 2 To lLastRow
        v = Worksheets("db").Cells(iIdx, 1).Text
        If LCase(Left(v, CharNumber)) = LCase(YourInput) Then
            ListBox1.AddItem v
        End If
    Next

    Application.ScreenUpdating = True
    Application.Calculation = xlCalculationAutomatic
    Application.EnableEvents = True
End Sub

Private Sub ListBox1_Click()
    MsgBox ("Your selection: " & ListBox1.Text)
    'do your stuff
End Sub


  1. 3 manieren om alle opgeslagen procedures in een SQL Server-database op te sommen

  2. Kan ik het MySQL-uitvoerbare bestand automatisch vinden vanuit PHP?

  3. pijltips in MySQL Workbench EER-diagram begrijpen

  4. Maak verbinding met Oracle-database in dotnet mvc-toepassing