`
文章列表
这是我网上找的代码,但我自己对它进行了一些优化. 1.cpu序列号2.mac序列号3.硬盘id在给软件加序列号时这三个应该是最有用的,可以实现序列号和机器绑定,对保护软件很有好处.哈哈. 不过现在好像要saas了,软件盗版就要消失了. using System; using System.Management;     /// Computer Information     public class Computer     {         public string CpuID; //1.cpu序列号        public string MacAddress; //2. ...
using System; using System.Security.Cryptography; using System.Text; namespace Hash { public class Hash { public Hash() { } public enum HashType : int { MD5, SHA1, SHA256, SHA512 } ...
准备是将Form中所有的TextBox控件的Text属性的文本清空 写了: foreach (Control ctrl in this.Controls)            {                if (ctrl.GetType().Name == "TextBox")                    ctrl.Text = "";            }运行后TextBox内容没有清空,后来调试了下发现 并没有遍历TextBox控件,Form中其它的控件都遍历了, 感觉奇怪怎么没有遍历TextBox控件,发现自己的Te ...

回车转Tab

原来一直是为每个文本框的KeyPress增加:        if(e.KeyChar = '/r')  SendKeys.Send("{TAB}"); 最近想想,其实有更简单的方法,把Form的KeyPreView设为true,然后在Form的KeyPress中增加下列代码即可:       if (e.KeyChar == '/r')       this.SelectNextControl(this.ActiveControl, true, true, true, true);
char、varchar、nchar、nvarchar的区别 对于程序中的string型字段,SQLServer中有char、varchar、nchar、nvarchar四种类型来对应(暂时不考虑text和ntext),开建立数据库中,对这四种类型往往比较模糊,这里做一下对比。 定长或变长 ...
SQL Server CE 用Select Case 來將欄位NULL值轉為0   SELECT (CASE WHEN PUR_AMT IS NULL THEN 0 ELSE PUR_AMT END) PUR_AMT FROM PDA_PCOTI  

sql日期时间函数

    博客分类:
  • sql
當我們在 SQL statement 中,要將日期格式轉換成文字使用時,我們第一個想到的就是 convert or cast 這兩個資料型態轉換函式(只適合 Microsoft SQL Server 使用)語法使用 CAST:CAST ( expression AS data_type )使用 CONVERT:CONVERT ( data_type [ ( length ) ] , expression [ , style ] )如果我們要將日期轉換成 "yyyy/mm/dd" 格式的文字時,該怎麼寫呢?先談一個有點麻煩的方法,搭配 YEAR(), MONTH(), DAY( ...

时间字段默认值

    博客分类:
  • sql
insert into employee values (4,'John',25, getdate()) ;     just getdate().
1. System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName 获取模块的完整路径。 2. System.Environment.CurrentDirectory 获取和设置当前目录(该进程从中启动的目录)的完全限定目录。 3. System.IO.Directory.GetCurrentDirectory() 获取应用程序的当前工作目录。这个不一定是程序从中启动的目录啊,有可能程序放在C:"www里,这个函数有可能返回C:"Documents and Se ...

C#设置背景透明

1. <asp:label Id= "label1 " BackColor= "Transparent "> 2.this.label1.BackColor = System.Drawing.Color.Transparent; 3.在窗体的Load事件中加上这句代码试试看 SetStyle(ControlStyles.ResizeRedraw | ControlStyles.SupportsTransparentBackColor, true);
用VS2008安装盘  重新安装 WCU/SSCE/SSCEVSTOOLS-enu后解决
Windows Embedded CE 6.0 下载地址和序列号程序下载地址http://download.microsoft.com/download/a/0/9/a09e587c-4ff9-4a58-a854-56fe50b862b2/Windows Embedded CE 6.0.msi序列号:Your product key(s) for installation are: * Windows Embedded CE 6.0 (plug-in for Visual Studio 2005): H8RQR-MMKRP-XFRFC-9HKGJ-82R6J * If ...
静态 xhtml mp页面,使用UTF-8编码,在PC Opera下正常显示,手机上打开出现中文乱码,代码如下: <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.0//EN" "http://www.wapforum.org/DTD/xhtml-mobile10.dtd"> <html xmlns="http://www.w3. ...
在eclipse中,启动run on server时报错:    Resource is out of sync with the file system: ........     查阅资料后发现这是文件系统不同步的问题,是因为在eclipse之外对工程中的resource进行修改引起的;但是,有时没有在eclipse之外进行修改,也会报类似的错误。解决办法:需要手动刷新一下资源管理器。 (1)在eclipse中,工程目录右键,选择F5(refresh) (2)设置eclipse自动刷新。       通过Window->Preferences --> General ...
  服务器发送了意外的返回值(405 Method Not Allowed),在响应 “MKCOL” 的请求 svn (405 Method Not Allowed) 在响应 “MKCOL” 的请求 I managed to solve the problem: Delete the parent’s directory of the folder giving the problem. Did SVN Update A folder with the same name as the new one already existed in repository.
Global site tag (gtag.js) - Google Analytics