上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 33 下一页
摘要: private Thread t; public Form1() { InitializeComponent(); ThreadStart ts = new ThreadStart(Do); t = new Thread(ts); t.Start(); timer1.Start(); } public void Do() { while (true) { Timer tm = new System... 阅读全文
posted @ 2010-09-16 17:24 Sue_娜 阅读(137) 评论(0) 推荐(0) 编辑
摘要: 针对“用一条SQL得到数据库中的随机记录集”问题在网上已经有很多答案了: SQL Server 2000: SELECT TOP n * FROM tanblename ORDER BY NEWID() Access SELECT TOP n * FROM tanblename ORDER BY rnd([一个自动编号字段]) 好了!就说说这个Access的! 打开Acce... 阅读全文
posted @ 2010-09-08 11:33 Sue_娜 阅读(3217) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Text;using System.Data;using System.Data.OleDb;using System.Web;/**//// <summary>/// 名称:access下的分页方案(仿sql存储过程)/// 作者:cncxz(虫虫)/// blog:... 阅读全文
posted @ 2010-09-07 16:24 Sue_娜 阅读(238) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/mubai007/archive/2009/10/19/4696797.aspx 阅读全文
posted @ 2010-09-06 09:02 Sue_娜 阅读(91) 评论(0) 推荐(0) 编辑
摘要: http://support.e-icann.com/tutorial/setup_sqlserver2000.htm 阅读全文
posted @ 2010-08-12 12:59 Sue_娜 阅读(143) 评论(0) 推荐(0) 编辑
摘要: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\aspnet_regiis.exe -i 阅读全文
posted @ 2010-08-09 09:17 Sue_娜 阅读(140) 评论(0) 推荐(0) 编辑
摘要: 代码 阅读全文
posted @ 2010-07-29 14:14 Sue_娜 阅读(1419) 评论(0) 推荐(0) 编辑
摘要: select convert(numeric(8,2),round(UnTaxAmount,2))as UnTaxAmount from View_SaleVoiceselect cast(UnTaxAmount as decimal(20,2)) as UnTaxAmount from View_SaleVoice Datagrid,DataList,Repeate等的数据格式设置表达式 Dat... 阅读全文
posted @ 2010-07-29 14:14 Sue_娜 阅读(25549) 评论(0) 推荐(0) 编辑
摘要: 代码 阅读全文
posted @ 2010-07-29 14:13 Sue_娜 阅读(1941) 评论(0) 推荐(1) 编辑
摘要: 检索 COM 类工厂中 CLSID 为 {00024500-0000-0000-C000-000000000046} 的组件时失败,原因是出现以下错误: 80070005解决办法: 配置 DCOM 中 EXCEL 应用程序:要在交互式用户帐户下设置 Office 自动化服务器,请按照下列步骤操作: 1. 以管理员身份登录到计算机,并使用完整安装来安装(或重新安装)Office。为了实现系统的可靠性... 阅读全文
posted @ 2010-07-19 14:56 Sue_娜 阅读(543) 评论(0) 推荐(0) 编辑
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 33 下一页