上一页 1 ··· 94 95 96 97 98 99 100 101 102 ··· 118 下一页
摘要: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.IO; 6 using System.Drawing.Imaging; 7 using System.Drawing.Printing; 8 using System.Drawing.Drawing2D; 9 using System.Drawing.Text; 10 using System.Diagnostics; 11 using System.Runt... 阅读全文
posted @ 2013-01-30 13:05 ®Geovin Du Dream Park™ 阅读(1308) 评论(0) 推荐(0)
摘要: 1 ---去除字符串中重復的值函數 2 create function StringRemove(@str nvarchar(2000)) 3 returns nvarchar(2000) 4 as 5 begin 6 declare @result nvarchar(2000),@temp nvarchar(1000) 7 set @result='' 8 set @temp='' 9 while(charindex(',',@str)<>0)10 begin11 set @temp=substring(@str,1,... 阅读全文
posted @ 2013-01-19 17:17 ®Geovin Du Dream Park™ 阅读(470) 评论(0) 推荐(0)
摘要: 1 --sql code Geovin Du 2 IF EXISTS (SELECT * FROM sysobjects WHERE [name] = 'proc_Select_AssessmentProjectSetSearch') 3 DROP PROCEDURE proc_Select_AssessmentProjectSetSearch 4 GO 5 CREATE PROCEDURE proc_Select_AssessmentProjectSetSearch 6 ( 7 @AssessmentProjectSetJobType Uniqueidentifier, .. 阅读全文
posted @ 2013-01-19 16:38 ®Geovin Du Dream Park™ 阅读(409) 评论(0) 推荐(0)
摘要: 1 /// <summary> 2 /// 20130118 3 /// 搜索字符串是否存在 4 /// 塗聚文 締友計算機信息技術有限公司 5 /// 捷為工作室 6 /// </summary> 7 public class StringSearchClass 8 { 9 /// <summary>10 /// 查找字符串11 /// StringIndexOf("1,2,3,4,5,6","1,8");12 /// </summary>13 /// ... 阅读全文
posted @ 2013-01-18 11:17 ®Geovin Du Dream Park™ 阅读(425) 评论(2) 推荐(0)
摘要: 深圳地鐵羅寶線和蛇口線示例:見上圖。 要求瀏覽器版本:browser does support HTML5 canvas element:Google Chrome V 8+;Mozilla Firefox V 3.6+;Opera V 11+;Apple Safari V 5+;Microsoft 阅读全文
posted @ 2013-01-14 13:39 ®Geovin Du Dream Park™ 阅读(2031) 评论(0) 推荐(0)
摘要: 1 //透明背景图 2 Brush b = new SolidBrush(Color.FromArgb(50, Color.Transparent)); 3 4 5 Bitmap image = new Bitmap(1015, 637); 6 Graphics g = Graphics.FromImage(image); 7 g.Clear(Color.Transparent); 8 g.FillRectangle(b, 0, 0, 1015, 637); 9 ... 阅读全文
posted @ 2013-01-05 18:33 ®Geovin Du Dream Park™ 阅读(532) 评论(0) 推荐(0)
摘要: listView1.GridLines = true;//显示行与行之间的分隔线 listView1.FullRowSelect = true;//要选择就是一行 listView1.View = View.Details;//定义列表显示的方式 listView1.Scrollable = true;//需要时候显示滚动条 listView1.MultiSelect = true; // 可以多行选择 listView1.HeaderStyle ... 阅读全文
posted @ 2012-12-28 20:18 ®Geovin Du Dream Park™ 阅读(1188) 评论(0) 推荐(0)
摘要: ---表中的主鍵select [name],'tablekey'= (select top 1 COLUMN_NAME from INFORMATION_SCHEMA.KEY_COLUMN_USAGE where TABLE_NAME = sysobjects.name) from sysobjects where type='U'--所有表select * from sysobjects where type='U'--所有表的主鍵 COLUMN_NAMEselect * from INFORMATION_SCHEMA.KEY_COLUMN_U 阅读全文
posted @ 2012-12-27 19:18 ®Geovin Du Dream Park™ 阅读(478) 评论(0) 推荐(0)
摘要: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;using System.IO;using System.Drawing.Imaging;using System.Drawing.Printing;using System.Drawing.Drawing2D;using System.Drawing.Text;using Syst 阅读全文
posted @ 2012-12-26 17:11 ®Geovin Du Dream Park™ 阅读(623) 评论(0) 推荐(0)
摘要: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using WMPLib;//引用Windows MediaPlay COM組件using AxWMPLib; //在選項卡裏添加 Windows MediaPlay COM組件namespace WindowsChineseCalender{ . 阅读全文
posted @ 2012-12-22 15:06 ®Geovin Du Dream Park™ 阅读(479) 评论(0) 推荐(0)
上一页 1 ··· 94 95 96 97 98 99 100 101 102 ··· 118 下一页