Pocket PC应用程序中使用SQL Server CE
2009-02-07 10:20:39 来源:WEB开发网调用Web Sevice
对于特殊的书籍查询,应用程序将调用Web Sevice,在.NET CF中调用Web Sevice与在.NET Framework中没有什么差别,要注意的是Web Sevice必须与实际机器上使用的名称相同,否则Web Sevice将不会工作。
下面将Web Sevice与ComboBox控件绑定:
Private Sub cmdSearch_Click( _
ByVal sender As System.Object, _
ByVal e As System.EventArgs) _
Handles cmdSearch.Click
Dim ws As New TitlesWS.Service1()
' get the web service
ds = ws.getTitles(txtSearch.Text)
cboResult.DataSource = ds.Tables(0)
cboResult.DisplayMember = "title"
End Sub
实际上当书名被选定后,他更多的信息将显示在label控件上。
Private Sub cboResult_SelectedIndexChanged( _
ByVal sender As System.Object, _
ByVal e As System.EventArgs) _
Handles cboResult.SelectedIndexChanged
' display the information of the
' selected book.
Dim row As DataRow
row = ds.Tables("titles").Rows( _
cboResult.SelectedIndex)
lblTitleID.Text = row.Item("title_id")
lblPrice.Text = "$" & row.Item("price")
txtNotes.Text = row.Item("notes")
End Sub
图6
显然ADD按钮用于增加订单中的数量,因此必须给ADD按钮添加一个单击事件:
- ››PC专用Android 4.0 x86系统上手体验
- ››Pcworld:Windows 7三则常见故障排除技巧
- ››应用程序的配置管理Poco
- ››PC免疫系统 IFN-RE53
- ››Pocket Player睡眠定时器不能选择问题的解决办法
- ››PocketPC下 创建全屏幕应用程序
- ››PC上试玩Android Market
- ››应用程序开发者偏好苹果也关注Android
- ››PC World:Android与iPhone手机的五大战场
- ››PC通过Android上网的几种方法总结
- ››PCWorld:IE9“平台预览版”你问我答
- ››Pocket PC 智能手机 Windows 根目录下自带程序名称...
更多精彩
赞助商链接