VBA - Dictionaries

Поділитися
Вставка
  • Опубліковано 8 січ 2025

КОМЕНТАРІ • 4

  • @giovani6666
    @giovani6666 7 років тому

    Excellent video. Congratulations

  • @soberingtimes2362
    @soberingtimes2362 6 років тому

    Great video,Thanks :)

  • @j53iliff2
    @j53iliff2 7 років тому

    Nice video. Thank you.

  • @nagisafurukawa8864
    @nagisafurukawa8864 7 років тому

    Hi, I am trying to fill in a dictionary with data from SQL server 2008 , this is my code :
    Query = "select frameID, siftSize from framesDef"
    'Query of selection
    cmd.CommandText = Query
    Dim res = cmd.ExecuteReader()
    While res.Read()
    sic.Add(res("frameID"), res("siftSize"))
    res_lab.Text = sic.Count
    'Just to test the dictionary
    End While
    it is displaying an error
    someone help please ?