Azure Lei Zhang的博客

weibo: LeiZhang的微博/QQ: 185165016/QQ群:319036205/邮箱:[email protected]/TeL:139-161-22926

  博客园 :: 首页 :: 新随笔 :: 联系 :: 订阅 :: 管理 ::

2012年1月6日

摘要: 本博-三石Blog(下文简称本博),在本博客文章结尾处右下脚未注明转载、来源、出处的作品(内容)均为本博原创,本站对于原创作品内容对其保留版权,请勿随意转载,如若真有需要的朋友可以发Mail联系我;转载本博原创作品(内容)也必须遵循“署名-非商业用途-保持一致”的创作共用协议,请务必以文字链接的形式 阅读全文
posted @ 2012-01-06 19:27 Lei Zhang的博客 阅读(31916) 评论(15) 推荐(19)

2010年10月18日

摘要: http://www.blogjava.net/gf7/archive/2007/03/13/103556.htmlc:\sqlplus /nologSQL>conn / as sysdbaSQL> show parameter processes;NAME TYPE VALUE------------------------------------ ----------- -----... 阅读全文
posted @ 2010-10-18 11:38 Lei Zhang的博客 阅读(1437) 评论(0) 推荐(0)

2010年10月8日

摘要: 平时用的的确确是少,回来想起来已经忘记了不下3次了,搞得每次都要去网上现找,索性写到博客中作为记录。基本理论: 控件的背景色往往是从父控件继承来的。比如在PictureBox 上面放置一个背景透明的Label,做法可如下: label1.Parent = pictureBox1; //设定Label 的父控件为PictureBox label1.BackColor = Color.Transpar... 阅读全文
posted @ 2010-10-08 16:25 Lei Zhang的博客 阅读(453) 评论(0) 推荐(0)

2010年9月2日

摘要: public String Multiply(string num1, string num2) { int num1Length = num1.Length; int num2Length = num2.Length; //tranfor the string to int array int[] inum1 = new int[num1Length]; //先将字符串转化为整数数组(每个数字... 阅读全文
posted @ 2010-09-02 21:19 Lei Zhang的博客 阅读(378) 评论(0) 推荐(0)

2010年8月31日

摘要: ////////////////////////aspx<asp:GridView ID="gvData" runat="server" Style="border: 0px; cursor: hand;" AutoGenerateColumns="False" ShowHeader="True" Width="710" onclick="javascript:GoSel(event);" ... 阅读全文
posted @ 2010-08-31 11:48 Lei Zhang的博客 阅读(796) 评论(0) 推荐(0)

2010年8月30日

摘要: ===========================aspx<asp:GridView runat="server" ID="grvMobile" AutoGenerateColumns="False" Width="100%" OnRowCancelingEdit="grvMobile_RowCancelingEdit" OnRowDeleting="grvMobile_RowDelet... 阅读全文
posted @ 2010-08-30 17:47 Lei Zhang的博客 阅读(1134) 评论(0) 推荐(0)

2010年8月19日

摘要: /// <summary> /// 判断2个几何图形是否相交 /// </summary> /// <param name="oneGeometry"></param> /// <param name="otherGeometry"></param> /// <returns></returns> pu... 阅读全文
posted @ 2010-08-19 10:10 Lei Zhang的博客 阅读(2030) 评论(0) 推荐(0)

2010年8月13日

摘要: private void downLoad(string id) { string fileName = Page.Request.PhysicalApplicationPath + "SystemManage\\SysFile\\" + DateTime.Now.ToString("yyyyMMddhhmmss") + ".zip"; OracleConnection conn = null; ... 阅读全文
posted @ 2010-08-13 14:19 Lei Zhang的博客 阅读(730) 评论(0) 推荐(0)

2010年8月11日

摘要: //////////////////////////////////////////oracle部分存储过程create or replace package PACK_PAGE isTYPE type_cur IS REF CURSOR; --定义游标变量用于返回记录集 PROCEDURE PROC_PAGE ( Pindex in number, --分页索引 Psql in varchar2... 阅读全文
posted @ 2010-08-11 15:51 Lei Zhang的博客 阅读(2015) 评论(0) 推荐(0)

2010年7月20日

摘要: 主要原因是没有释放AO资源public class Form1 : System.Windows.Forms.Form{ private ESRI.ArcGIS.esriSystem.IAoInitialize m_AoInitialize = new ESRI.ArcGIS.esriSystem.AoInitializeClass(); private void Form1_Load(objec... 阅读全文
posted @ 2010-07-20 14:46 Lei Zhang的博客 阅读(509) 评论(0) 推荐(0)