会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
®Geovin Du Dream Park™
why we only heard about haves and have-nots, but we did'nt heard about doers and doer-nots. 人生是一种心境,生活是一种艺术,成功是一种心态,幸福是一种感觉,竞争是一种建构,情感是一种容合.学习是一种成长.
博客园
首页
新随笔
联系
管理
订阅
上一页
1
···
92
93
94
95
96
97
98
99
100
···
118
下一页
2013年5月31日
Csharp: Listview convert Datatable and ListView.Group count
摘要: 1 /// 2 /// 計算ListView各類子項ListViewGroup的數量 3 /// 4 /// 5 private DataTable getNumber(ListView listview) 6 ...
阅读全文
posted @ 2013-05-31 15:56 ®Geovin Du Dream Park™
阅读(806)
评论(0)
推荐(0)
2013年5月30日
工程投诉过程中各建设主管理部门联系人表
摘要: 各建设主管理部门联系人表:(一直在联系投诉,可以查相关记录,但许多都不愿告之其姓名,并不要以此来互相推托.问之其领导电话,说是私人电话?办公电话不是纳税人的钱?是私人花的钱?)通话记录可以查13824350518。单位姓名电子邮箱/手机办公电话江西省吉安市永丰县建筑工程质量监督管理站郭庆峰(站长)13576857777@qq.com 0796-25294660796-2206189(邓)江西省永丰县工程材料检测中心郭庆峰(负责人)18970692222 0796-2529466江西省永丰县建筑业安全监督管理站郭庆峰(书记、站长)189706922220796-2529466江西省永丰县建筑业安
阅读全文
posted @ 2013-05-30 17:40 ®Geovin Du Dream Park™
阅读(1541)
评论(0)
推荐(0)
Csharp:ListView paging and groups from Any Data Sources
摘要: 1 /// <summary> 2 /// ListView 分頁,分組 3 /// http://www.codeproject.com/Tips/535722/Listview-Paging-in-Csharp 4 /// http://www.c-sharpcorner.com/uploadfile/853a6a/grouping-listview-items-dynamically/ 5 /// </summary> 6 public partial class LsvPagingForm : Form 7 { ...
阅读全文
posted @ 2013-05-30 17:27 ®Geovin Du Dream Park™
阅读(827)
评论(0)
推荐(1)
2013年5月29日
sql server:自定義計算固定工作日,雙休日函數
摘要: ---sql server declare @date datetimeset @date='2012-02-03'--getdate()--本月第一天SELECT DATEADD(mm, DATEDIFF(mm,0,@date), 0)--本月最后一天SELECT dateadd(ms,-3,DATEADD(mm, DATEDIFF(m,0,@date)+1, 0))---有個月多少天函數if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[GetAMonthHowNumber]
阅读全文
posted @ 2013-05-29 09:28 ®Geovin Du Dream Park™
阅读(910)
评论(0)
推荐(0)
2013年5月24日
Csharp: 請假輸入兩個日期:(只考慮最多相差一個月)对于不同月份的数据考虑月份数据分界
摘要: /// <summary> /// 請假輸入兩個日期:(只考慮最多相差一個月)对于不同月份的数据考虑月份数据分界 /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void button1_Click(object sender, EventArgs e) { DateTime enterStar,enterEnd,stardate1, endate1, star
阅读全文
posted @ 2013-05-24 12:44 ®Geovin Du Dream Park™
阅读(727)
评论(0)
推荐(0)
2013年5月22日
display month as a calendar using sql
摘要: ---sql server 2005 顯示一個月的數據,如果沒有空的也要顯示出來declare @T table([geovinddate] Datetime,[workcontent] nvarchar(8),[worker] nvarchar(50))Insert @Tselect '2012-8-11',N'遲到','geovindu' union allselect '2012-8-12',N'早退','geovin';with Dateas(select cast('2012-08
阅读全文
posted @ 2013-05-22 15:05 ®Geovin Du Dream Park™
阅读(326)
评论(0)
推荐(0)
2013年5月20日
Csharp: jmail組件發送郵件
摘要: jmail.Message MailObj = new jmail.MessageClass(); MailObj.From = "geovindu@qq.com"; //发件人的地址 可以显示与服务名不一样 MailObj.FromName = "締友計算機信息技術有限公司";//用户名 //MailObj.FromName = "geovindu@dupcit.com"; MailObj.Logging = true; MailObj.MailServerUserName =...
阅读全文
posted @ 2013-05-20 18:45 ®Geovin Du Dream Park™
阅读(653)
评论(0)
推荐(0)
2013年4月24日
Csharp: Winform 顏色選擇器 Color convert RGB and RGB convert Color
摘要: /// <summary> /// 選擇顏色 /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void button2_Click(object sender, EventArgs e) { //是否選擇了顏色 if (colorDialog1.ShowDialog(this) == DialogResult.OK) { ...
阅读全文
posted @ 2013-04-24 12:09 ®Geovin Du Dream Park™
阅读(1896)
评论(0)
推荐(1)
2013年4月20日
SVG In HTML5 Pages
摘要: 这是效果图: 1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta content="text/html; charset=utf-8" http-equiv="Content-Type" /> 5 <title>geovindu svg</title> 6 </head> 7 <body> 8 9 <svg width="640" height="480" xmlns="
阅读全文
posted @ 2013-04-20 17:30 ®Geovin Du Dream Park™
阅读(383)
评论(0)
推荐(0)
2013年4月17日
C# print Vertical text
摘要: http://stackoverflow.com/questions/7655001/how-do-i-print-vertical-text-in-c-sharp-that-prints-up-stringformat-directionvhttp://stackoverflow.com/questions/955362/rotate-text-for-printinghttp://stackoverflow.com/questions/4460258/c-rotated-text-alignhttp://msdn.microsoft.com/en-us/library/aa287525(v
阅读全文
posted @ 2013-04-17 17:26 ®Geovin Du Dream Park™
阅读(760)
评论(0)
推荐(0)
上一页
1
···
92
93
94
95
96
97
98
99
100
···
118
下一页
公告