关于 AutoCompleteCustomSource 的问题(VB.NET)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于 AutoCompleteCustomSource 的问题(VB.NET)相关的知识,希望对你有一定的参考价值。
我有一个TextBox 属性设为:
AutoCompleteMode:Suggest
AutoCompleteSource:CustomSource
在TextBox的Changed事件中有代码:
Dim col As New AutoCompleteStringCollection
Do Until rs.EOF 'ADODB.Recordset,且有记录
col.Add( DirectCast(rs(0).value,String))
rs.MoveNext()
Loop
txtCustom.AutoCompleteCustomSource = col
请问,为什么当我键入字符时,并没有下显示出自动完成的数据?跟踪代码,发现Col里是有数据.
当我,第三次按下键时.程序就挂了,提示,0x0000010内存不能读...不管你是快速按三个字符,还是慢吞吞的按三个字符都一样挂....整个工程,并没有用API!
大哥,我的是VB.NET呢,不是ASP.NET
如果是BS的话,要写webservices,像google的搜索框一样。
如果是CS的话,没做过
scrapy 关于 rule, 关于多页
分页
https://www.jianshu.com/p/0c957c57ae10
关于 follow=true, rule
https://zhuanlan.zhihu.com/p/25650763
关于rule
Each Rule defines a certain behaviour for crawling the site. Rules objects are described below. If multiple rules match the same link, the first one will be used, according to the order they’re defined in this attribute.
further more,
rule (xxxx , callback=F1 ... )
rule (yyyy, callback=F1 ... )
def F1,
def F2
以上是关于关于 AutoCompleteCustomSource 的问题(VB.NET)的主要内容,如果未能解决你的问题,请参考以下文章