扫一扫
分享文章到微信
扫一扫
关注官方公众号
至顶头条
作者:王凯明 来源:yesky 2007年10月15日
关键字:
Private Sub btnSearch_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSearch.Click ' 创建一个Google搜索对象 Dim s As New Google.GoogleSearchService() Try ' 调用搜索功能 Dim r As Google.GoogleSearchResult = s.doGoogleSearch(txtLicenseKey.Text, txtSearchTerm.Text, 0, 1, False, "", False, "", "", "") ' 从搜索的结果中分离出返回的结果数这一项并显示在程序的窗体中 Dim estResults As Integer = r.estimatedTotalResultsCount lblSearchResults.Text = CStr(estResults) Catch ex As System.Web.Services.Protocols.SoapException MsgBox(ex.Message) End Try End Sub |
Private Sub btnCache_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnCache.Click ' 创建一个Google搜索对象 Dim s As New Google.GoogleSearchService() Try ' 调用doGetCachedPage方法并获取缓存字节数 Dim bytes() As System.Byte = s.doGetCachedPage(txtLicenseKey.Text, txtCachePage.Text) ' 显示缓存页面的大小 lblCacheResults.Text = CStr(bytes.Length) Catch ex As System.Web.Services.Protocols.SoapException MsgBox(ex.Message) End Try End Sub |
Private Sub btnSpell_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSpell.Click ' 创建一个Google搜索对象 Dim s As New Google.GoogleSearchService() Try ' 调用doSpellingSuggestion方法 Dim suggestion As String = s.doSpellingSuggestion(txtLicenseKey.Text, txtSpell.Text) ' 如果右拼写建议的信息,则显示之 If suggestion Is Nothing Then lblSpellResults.Text = " Else lblSpellResults.Text = suggestion End If Catch ex As System.Web.Services.Protocols.SoapException MsgBox(ex.Message) End Try End Sub |
图4 |
如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。
现场直击|2021世界人工智能大会
直击5G创新地带,就在2021MWC上海
5G已至 转型当时——服务提供商如何把握转型的绝佳时机
寻找自己的Flag
华为开发者大会2020(Cloud)- 科技行者