上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 25 下一页
摘要: When creating a new project in Visual Studio, it creates a default AssemblyInfo.cs for you.I noticed that both the default company name and copyright notice attribute contained ‘Microsoft’ as its company name (this only happens on my Dell M6400 notebook).I got sick of changing it everytime, so I did 阅读全文
posted @ 2011-04-22 08:36 Jake.Xu 阅读(410) 评论(0) 推荐(0) 编辑
摘要: http://www.softwarefx.com/sfxtrial/TrialSuccess.aspx?Product=CfxNet70&Email=pinnasky@hotmail.com&UserGood=TRCNF70024527886662&Password=2B7Z6DBV&FirstName=Jake&LastName=Xu&Company=Guru&Address1=Guru&Address2=&Address3=&City=Guru&Zip=Guru&Phone=Guru& 阅读全文
posted @ 2011-04-21 09:28 Jake.Xu 阅读(93) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2011-04-20 15:04 Jake.Xu 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 主程序:using System;using System.Collections.Generic;using System.Linq;using System.Text;using iTextSharp.text;using iTextSharp.text.pdf;using System.IO;using System.Data;namespace MakePdf{ class Program : PdfPageEventHelper { static void Main(string[] args) { DataTable dt = new DataTable(); for (int i 阅读全文
posted @ 2011-04-20 14:58 Jake.Xu 阅读(1254) 评论(0) 推荐(0) 编辑
摘要: select substring('1ssssss',1,2);select INSTR('ss,ss,s,ss', ',');select LEFT('ss,sss,ss',2); 阅读全文
posted @ 2011-04-19 16:03 Jake.Xu 阅读(201) 评论(0) 推荐(0) 编辑
摘要: DELIMITER $$DROP PROCEDURE IF EXISTS `auo`.`TTT` $$CREATE DEFINER=`root`@`localhost` PROCEDURE `TTT`(OUT RESULT INT,IN CC VARCHAR(20))BEGINDECLARE l_last_row_fetched int;DECLARE COUNTRYT VARCHAR(20);DECLARE GUIDT INT;#DECLARE RESULT INT;#set RESULT = 0;#SELECT INTO RESULT = 0;#OPEN TT;DECLARE TT CUR 阅读全文
posted @ 2011-04-19 14:01 Jake.Xu 阅读(239) 评论(0) 推荐(0) 编辑
摘要: GridView显示绑定的数据(默认为5行):DataBindingRowCreated:Header[0]RowDataBoundRowCreated:DataRow[1]RowDataBoundRowCreated:DataRow[2]RowDataBoundRowCreated:DataRow[3]RowDataBoundRowCreated:DataRow[4]RowDataBoundRowCreated:DataRow[5]RowDataBoundRowCreated:Footer[6] //不管有没有页角行,该事件都会发生RowDataBoundRowCreated:Pager[7 阅读全文
posted @ 2011-04-18 13:44 Jake.Xu 阅读(317) 评论(1) 推荐(0) 编辑
摘要: 一、利用POI生成Excel强制换行1. 首先在需要强制换行的单元格里使用poi的样式,并且把样式设定为自动换行 # HSSFCellStyle cellStyle=workbook.createCellStyle(); # cellStyle.setWrapText(true); # cell.setCellStyle(cellStyle);2. 其次是在需要强制换行的单元格,使用\就可以实再强制换行 1. HSSFCell cell = row.createCell((short)0); 2. cell.setCellStyle(cellStyle); cell.setCellValue( 阅读全文
posted @ 2011-04-13 13:55 Jake.Xu 阅读(184) 评论(0) 推荐(0) 编辑
摘要: AjaxControlToolkit下载http://ajax.asp.net/downloads/default.aspx?tabid=47http://www.codeplex.com/AtlasControlToolkit/Release/ProjectReleases.aspx?ReleaseId=1425环境设置如下:下载完 ASPAJAXExtSetup.msi 安装更新后在你的系统盘下的(以C盘为例) 出现这个 文件夹:C:\Program Files\Microsoft asp.NET\ASP.NET 2.0 ajax Extensions\v1.0.61025安装这个后我们就 阅读全文
posted @ 2011-03-23 21:22 Jake.Xu 阅读(720) 评论(1) 推荐(0) 编辑
摘要: http://blog.csdn.net/21aspnet/archive/2007/03/25/1540301.aspx 阅读全文
posted @ 2011-03-23 21:08 Jake.Xu 阅读(125) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 25 下一页