vb.net - Visual Basic 2008 ADO getting ms access values to ComboBox -


i'm having trouble no values showing on combo box. want database value transfered combo box.

dim strsql string dim myrecord new adodb.recordset  sub fillcombo()     strsql = "select * tblpos"     while myrecord.eof         cboname.items.add(myrecord("productcode"))     end while     myrecord.movenext()      call executequery(strsql)     call getrecord() end sub 


Comments

Popular posts from this blog

What is happening when Matlab is starting a "parallel pool"? -

angular - DownloadURL return null in below code -

php - Cannot override Laravel Spark authentication with own implementation -