上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 21 下一页
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading;namespace LearnDelegate{ class Program { public static void Main(string[] args) { SyncDel del = Calulate; int x = 10; int y = 10; d... 阅读全文
posted @ 2012-03-15 11:05 Shikyoh 阅读(416) 评论(0) 推荐(0) 编辑
摘要: select [表名]=c.Name, [表说明]=isnull(f.[value],''), [列名]=a.Name, [列序号]=a.Column_id, [标识]=case when is_identity=1 then '是' else '' end, [主键]=case when exists(select 1 from sys.objects x join sys.indexes y on x.Type=N'PK' and x.Name=y.Name join sysin... 阅读全文
posted @ 2012-03-14 14:33 Shikyoh 阅读(349) 评论(0) 推荐(0) 编辑
摘要: declare @count intset @count=4;while(@count>0)beginDECLARE @STAKEHOLDERLIST TABLE (USERID UNIQUEIDENTIFIER,ID INT);INSERT INTO @STAKEHOLDERLIST (USERID)EXEC [SP_GETCONSULTUSERLISTBYTASKID] 22,'83F297BF-9B03-4C3C-B949-DE849018A725'select * from @STAKEHOLDERLISTset @count=@count-1enddeclare 阅读全文
posted @ 2012-02-06 17:09 Shikyoh 阅读(2233) 评论(0) 推荐(0) 编辑
摘要: Error message: shows - the Remote Procedure call failed. (Exception from HRESULT: 0x800706BE)windows update 不能检查及安装更新解决方法:1. Disable Windows Update service2. Reboot server3. Rename folderSoftwareDistribution (%systemroot%)4. Change start type for service Windows Update to manual5. run kb 947821 upda 阅读全文
posted @ 2011-12-23 15:16 Shikyoh 阅读(420) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Data;using System.Configuration;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.WebControls;using System.Web.UI.WebControls.WebParts;using System.Web.UI.HtmlControls;public partial class _Default : Page { protected void Page_Load(object se 阅读全文
posted @ 2011-12-23 13:56 Shikyoh 阅读(863) 评论(0) 推荐(0) 编辑
摘要: 1.Retrieving the COM class factory for component with CLSID {00024500-0000-0000-C000-000000000046} failed due to the following error: 80070005 拒绝访问。 (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED)).此问题出现有多种原因,要么找不到Com,要么没有权限访问Com需要在Com组件中 配置 Excel Application的安全权限。在Server 2008 64位中 需要 以32访问的方式处 阅读全文
posted @ 2011-12-22 17:31 Shikyoh 阅读(758) 评论(0) 推荐(1) 编辑
摘要: System.Runtime.InteropServices.COMException (0x800A03EC): Microsoft Office Excel 不能访问文件“D:\Benz\Daimler\Benz.Win\LSHBizPlanFigure.xls”。 可能的原因有:? 文件名称或路径不存在。? 文件正被其他程序使用。? 您正要保存的工作簿与当前打开的工作簿同名。此问题的出现 我十分不解。解决方案 也十分疑惑This solution is ...?Windows 2008 Server x64 Please make this folder. C:\Windows\Sys. 阅读全文
posted @ 2011-12-09 14:46 Shikyoh 阅读(9640) 评论(3) 推荐(2) 编辑
摘要: 请卸载你的SVN管理插件,如AnkhSvn重装。~~~搞了1小时 ,才找到这个原因· 阅读全文
posted @ 2011-11-16 15:03 Shikyoh 阅读(2443) 评论(0) 推荐(0) 编辑
摘要: public class SLList<T> : IEnumerator { private ArrayList Info; private int Index; public SLList(IEnumerable<T> List) { Index = -1; Info = new ArrayList(List.Count()); foreach (var item in List) { Info.Add(item... 阅读全文
posted @ 2011-11-12 16:57 Shikyoh 阅读(731) 评论(1) 推荐(0) 编辑
摘要: 代码优先 public class NewMyClass : IEnumerable, IEnumerator { private string[] Info; private int Index; public NewMyClass(int Size) { Index = -1; Info = new string[Size]; for (int i = 0; i < Size; i++) { Info[i]... 阅读全文
posted @ 2011-11-12 15:57 Shikyoh 阅读(259) 评论(0) 推荐(0) 编辑
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 21 下一页