
vb.net
文章平均质量分 60
kevin521
这个作者很懒,什么都没留下…
展开
-
操作必须使用一个可更新的查询
错误“操作必须使用一个可更新的查询”原因及解决办法翻译得比较匆忙,呵呵。错误信息:Microsoft OLE DB Provider for ODBC Drivers error 80004005 [Microsoft][ODBC Microsoft Access 97 Driver] Operation must use anupdateable query. 或者是:Microsof原创 2004-09-22 10:40:00 · 2411 阅读 · 1 评论 -
删除数据库中重复数据的几个方法
方法一declare @max integer,@id integerdeclare cur_rows cursor local for select 主字段,count(*) from 表名 group by 主字段 having count(*) > 1open cur_rowsfetch cur_rows into @id,@maxwhile @@fetch_status=0beg原创 2004-09-22 17:45:00 · 2218 阅读 · 0 评论 -
一个杀死EXCEL的程序
Dim pTemp As System.Diagnostics.Process()pTemp = System.Diagnostics.Process.GetProcesses()Dim pTempProcess As System.Diagnostics.Process For Each pTempProcess In pTempDim sProcessName As String = pT原创 2004-09-09 21:51:00 · 837 阅读 · 0 评论 -
终于可以实现后台自动更新了
高兴啊。。。。。。。。。。。。。下面是所有步骤。研究了一上午终于搞定!Step 1: Build the application to updateIn this step we will build the application to auto-update. If you want, you can substitute in your own application here.原创 2004-09-10 14:28:00 · 2489 阅读 · 12 评论 -
递归创建文件名
Public Function getname(ByVal name As String, ByVal num As String) As String Dim pathstring As String = "f:/" & name & num.ToString & ".txt" If File.Exists(pathstring) Then nu原创 2004-09-14 15:12:00 · 886 阅读 · 0 评论 -
终于会使用异步调用ws了,高兴啊
ws端 _ Public Function HelloWorld(ByVal temp As String) As String Return temp End Function客户端定义的新类Public Class Class1 Private m_WsData As New localhost.Service1 Public Function b原创 2004-10-25 17:17:00 · 1540 阅读 · 0 评论 -
TaskVision 解决方案概述:设计与实现
来自http://www.microsoft.com/china/MSDN/library/enterprisedevelopment/softwaredev/SCdnwinformswnftaskvision.mspx 欢迎来到 MSDN > 企业开发TaskVision 解决方案概述:设计与实现发布日期: 08/20/2004 | 更新日期: 08/20/2004原创 2004-11-02 11:38:00 · 1344 阅读 · 0 评论