上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 21 下一页
摘要: Chart ChartBorder 图表区域的边框设置 ChartFill 图表区域的背景填充 Legend 图表的注释标签显示设置项目,一组数据对应一种颜色的注释 IsHStack 当有多个显示项的时候设置Y轴数据是叠加的还是分开的 Xaxis 图表区域的X轴相关信息设置 ... 阅读全文
posted @ 2013-04-26 10:20 louiskoo 阅读(43794) 评论(0) 推荐(4) 编辑
摘要: //设置单元格自动宽 datagridview.DefaultCellStyle.WrapMode = DataGridViewTriState.True; datagridview.DefaultCellStyle.ForeColor = Color.White; datagridview.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.ColumnHeader; //设置字体大小 System.Windows.Forms... 阅读全文
posted @ 2013-04-26 10:10 louiskoo 阅读(8089) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.ComponentModel;using System.Drawing;using System.Data;using System.Linq;using System.Text;using System.Windows.Forms;namespace OracleTest.CustomControl{ public partial class UserDataGridView : DataGridView { private Image m_Imag... 阅读全文
posted @ 2013-04-26 10:06 louiskoo 阅读(1174) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/gisfarmer/article/details/3764734 阅读全文
posted @ 2013-04-25 11:29 louiskoo 阅读(305) 评论(0) 推荐(0) 编辑
摘要: 以下内容转自http://www.cnblogs.com/musickh/archive/2009/07/16/1524912.html,在此多谢博主!DateTime.Now=2009-7-16 5:20:56//今天DateTime.Now.Date.ToString(); "2009-7-16 0:00:00"//周起始日期DateTime.Now.Date.AddDays(-(int)(DateTime.Now.DayOfWeek)+1).ToString(); {2009-7-13 0:00:00} DateTime.Now.Date.AddDays(7-(int 阅读全文
posted @ 2013-04-23 13:23 louiskoo 阅读(2765) 评论(0) 推荐(0) 编辑
摘要: <EntityType Name="视图名称"> <Key><PropertyRef Name="主键的列名1" /><PropertyRef Name="主键的列名2" /><PropertyRef Name="主键的列名3" /> </Key> <Property Name="主键的列名1" Type="varchar2"Nullable="false"MaxLength=& 阅读全文
posted @ 2013-04-19 21:14 louiskoo 阅读(514) 评论(0) 推荐(0) 编辑
摘要: ISNULL ( check_expression , replacement_value) 参数 check_expression 将被检查是否为 NULL的表达式。check_expression 可以是任何类型的。 replacement_value 在 check_expression 为 NULL时将返回的表达式。replacement_value 必须与 check_expresssion 具有相同的类型。 返回类型 返回与 check_expression 相同的类型。 注释 如果 check_expression 不为 NULL,那么返回该表达式的值;否则返... 阅读全文
posted @ 2013-04-19 19:23 louiskoo 阅读(208) 评论(0) 推荐(0) 编辑
摘要: OrderNum = (from s in g from f in dt.JXDW_ITIL_WORK_ORDER where s.CALL_ID == f.CALL_ID && (new string[] { "待回访", "回访中", "关闭" }).Contains(f.ORDER_STATUS) select f).Count(), 阅读全文
posted @ 2013-04-19 13:46 louiskoo 阅读(135) 评论(0) 推荐(0) 编辑
摘要: CTime = EntityFunctions.DiffSeconds(f.OPEN_DATE.Value , f.RESOLVED_DATE.Value), 阅读全文
posted @ 2013-04-18 21:50 louiskoo 阅读(3262) 评论(0) 推荐(0) 编辑
摘要: update imcc.jxdw_v_seat_traffic set sid = rownum;commit;ALTER TABLE "JXDW_CTI_CALL_LIST" ADD CONSTRAINT PK_JXDW_CTI_CALL_LIST PRIMARY KEY ( "LIST_ID") ENABLE VALIDATE alter table <table> add contraint pk_table primary key (<column> oracle没有ORACLE自增字段这样的功能,但是通过触发器(trig 阅读全文
posted @ 2013-04-18 15:09 louiskoo 阅读(2585) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 21 下一页