摘要:
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[GetNodeTable]') and OBJECTPROPERTY(id, N'IsProcedure') = 1)drop procedure [dbo].[GetNodeTable]GOif exists (select * from dbo.sysob... 阅读全文
摘要:
Create FUNCTION InsertComp (@in varchar(30)) RETURNS varchar(30)AS BEGIN declare @pos int, @count int, @result varchar(30), @len int set @result=@in --点前面的位置 set @pos=CHARINDEX('.',@result)-1 if (@po... 阅读全文
摘要:
Microsoft .Net Remoting系列专题专题之一:.Net Remoting基础篇一、Remoting基础什么是Remoting,简而言之,我们可以将其看作是一种分布式处理方式。从微软的产品角度来看,可以说Remoting就是DCOM的一种升 级,它改善了很多功能,并极好的融合到.Net平台下。Microsoft® .NET Remoting 提供了一种允许对象通过应用程序域... 阅读全文
摘要:
使用注意事项:sKey要为8位,或16位字符using System;using System.Collections.Generic;using System.Text;using System.Security.Cryptography;using System.IO; public class DesSecurity { /// <summary> /// 加密原函数 /// &... 阅读全文
摘要:
using System;using System.Collections.Generic;using System.Text;using System.Windows.Forms;using System.ComponentModel;namespace Demo{ class ProgressM { private BackgroundWorker worker = null; System.... 阅读全文
摘要:
/** 需要注意的是,这里加密的是字节数组,而不是字符串。因为 C# 字符串是按照 Unicode 编码保存的。* 要加密字符串的话,需要用 System.Text.Encoding.UTF8 (或者其他编码器)的 GetBytes 方法转化为字节数组,然后才能对其加密,密钥也是一样的。* 密钥长度是 128 位,也就是 16 个元素的字节数组,不过少于 16 个字节或多于 16 个字节都可以正常... 阅读全文
摘要:
Properties.Settings myStr = Properties.Settings.Default;string adrstr = myStr.configSetting.ToString();this.textBox1.Text += adrstr;adrstr = myStr.userSetting.ToString();this.textBox1.Text += adrstr;a... 阅读全文
摘要:
using System.Management;#region 取得设备网卡的MAC地址/// <summary>/// 取得设备网卡的MAC地址/// </summary>private string GetNetCardMacAddress(){ string str = ""; ManagementClass mc = new ManagementClass("Win... 阅读全文
摘要:
用一串二进制来表示公司的所有权限,1表示有,0表示没有权限。/// <summary>/// 公司模块权限/// </summary>public class SysModuleItem{/// <summary>/// 用户模块/// </summary>public const long USER_MODULE = 0x0000000000000... 阅读全文
摘要:
嵌入在项目中: 将下载的皮肤文件和IrisSkin2.RAR解压,在项目中添加现有项,将皮肤文件添加进项目;将IrisSkin2.dll引用进项目。皮肤文件属性中的“生成操作”改为嵌入的资源。引用的IrisSkin2.dll属性中的“复制本地”改为True。 代码:Sunisoft.IrisSkin.SkinEngine skin = new Sun... 阅读全文