自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

cyb专栏

风雨来袭风帆破,我心起航向苍天!

  • 博客(17)
  • 资源 (7)
  • 收藏
  • 关注

原创 SqlServer_SQL基础语法总结

SQL教程地址:http://www.w3school.com.cn/sql/index.asp;一、SQL 基础教程1、SQL(结构化查询语言)定义(1)、SQL 是用于访问和处理数据库的标准的计算机语言。你可以使用 SQL 访问和处理数据系统中的数据,这类数据库包括:Oracle, Sybase, SQL Server, DB2, Access 等等。(2)、SQL 指结构化查询语

2014-03-31 15:45:05 1428

原创 CSharp_DevExpress_XtraReport简单实现;

->效果->源码SimpleReport.cs类using System.Drawing;using DevExpress.XtraReports.UI;namespace HelloWorld{ public class SimpleReport : XtraReport { private DetailBand Detail;

2014-03-31 15:36:59 1326

原创 CSharp_PivotGridControl和ChartControl简单实现<增强版>;

->效果->完整源码using System;using System.Collections.Generic;using System.Data;using System.Windows.Forms;using DevExpress.XtraEditors;using System.Data.OleDb;using DevExpress.XtraPivotGrid

2014-03-29 10:30:21 1411

原创 SqlServer_select-多次sum查询结果合并;

=>背景介绍->tableSales表->第一次查询(2013销售员销售总额)select salesName, sum(extendedPrice) as sumprice13 from tableSales where salesTime between '2013-01-01' and '2013-12-31' group by salesName->第二次查

2014-03-29 09:09:45 4253 3

原创 CSharp_PivotGridControl和ChartControl简单实现;

=>效果=>源码using System;using System.Collections.Generic;using System.Data;using System.Windows.Forms;using DevExpress.XtraEditors;using System.Data.OleDb;using DevExpress.XtraPivotGrid;usin

2014-03-28 15:49:02 3254 1

原创 CSharp_DevExpress_XtraLayout布局简单实现;

=>效果=>源码using System;using System.Collections.Generic;using System.Windows.Forms;using DevExpress.XtraEditors;using DevExpress.XtraLayout;using DevExpress.XtraGrid;namespace HelloWorl

2014-03-27 13:09:31 2622 1

转载 CSharp_DevExpress_DXperience_Universal_11.1.6 下载+源码+编译

安装版本:DXperienceUniversal-11.1.6;帮助文档:DXperienceHelp2005-11.1.6;出处:http://blog.csdn.net/kingboy2008/article/details/7097199;标题:DevExpress DXperience Universal 11.1.6 下载+源码+编译+汉化流程+升级+替换强名;特别说

2014-03-25 17:12:06 2112 4

原创 CSharp_delegate简单讲解;

using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace workroom{ /// /// 委托(delegate):委托调用静态方法或者实例方法; /// 资料出处:http://zhidao.baidu.com/link?url=

2014-03-25 09:44:46 2276

原创 Java_swing_边框简单实现

->效果->源码//: Show.javaimport java.awt.*;import java.awt.event.*;import javax.swing.*;/** * // 显示框架 * @author cyb_23 */public class Show { /** * 框架 * @param jp * @param wid

2014-03-21 12:58:03 1349

原创 CSharp_SevenZip简单实现

=>结果=>源码using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Windows.Forms;using SevenZip; // 记得添加SevenZipSharp.dll引用;using System.IO;namespace

2014-03-18 17:06:24 1339 1

转载 Web_XP_IIS_“服务器应用程序不可用”问题;

XP_IIS_“服务器应用程序不可用”问题资料出处:http://linhan8888.blog.163.com/blog/static/40020680201272025913260/错误显示:服务器应用程序不可用;您试图在此 Web 服务器上访问的 Web 应用程序当前不可用。请点击 Web 浏览器中的“刷新”按钮重试您的请求。错误原因:因为我们安装的顺序一般都是先安装.NET

2014-03-18 15:13:04 956

转载 CSharp_SevenZipSharp压缩解压文本

特别说明:此文为网上资料整理,在这里非常感谢作者的无私奉献;功能:在内存中对字符串进行压缩解压操作。 SevenZipSharp相关文档下载地址:http://sevenzipsharp.codeplex.com/releases/view/51254 1. 解决方案中添加引用:SevenZipSharp.dll2. 复制粘贴两个dll文件:7z.dll  7z64

2014-03-18 12:01:19 2078

原创 CSharp_XmlRpc_CookComputing.XmlRpc实现

=>xmlrpc_client->XmlRpcWebClientForm.csusing System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Tex

2014-03-15 08:21:20 2553 3

原创 CSharp_DevExpress_编辑智能提示功能实现;

功能: 在RepositoryItemTextEdit内置编辑器编辑时,自动过滤匹配数据;=>设计图=>效果图=>代码_FormViewusing System;using System.Collections.Generic;using System.Data;using System.Windows.Forms;using HelloWorld.

2014-03-11 16:56:59 4589

原创 Java_XmlRpc_Apache XML-RPC 简单实现(内嵌WebServer);

功能:实现XmlRpc简单实现;>项目结构>XmlRpc_server->HelloServer.Javapackage xmlrpc.cyb.server;import java.net.InetAddress;import org.apache.xmlrpc.server.*;import org.apache.xmlrpc.webserver.WebServe

2014-03-06 14:49:59 1388 2

原创 Web_CSS_通过不断设置广告位置来实现广告停留视野效果;

>html源码 对联广告效果 `                                                     >JS源码var delta = 0.8;var collection; // 广告集合;var clos

2014-03-03 17:09:34 829

原创 Web_CSS_DIV相对浏览器定位及其关闭;

功能:DIV在屏幕中的绝对定位。 hello html,body { width:100%; height:100%; margin:0px; padding:0px; overflow:hidden; //溢出隐藏;解决IE8滚动条问题; } #Main { position:absolute; t

2014-03-03 13:48:54 1418 2

Struts2 标签(tag) 手册

java Strut2 标签 手册 tag struts tags

2014-11-19

mysql jdbc 驱动 jar包

mysql jdbc 驱动 jar包

2014-10-22

MD5、SHA1校验工具

MD5、SHA1校验工具,免安装!

2014-10-10

7z.dll 32位 64位 7z.dll动态链接库

用于C#开发中,使之能通过7zip压缩解压的动态链接库。此压缩包包含32位、64位系统下的7z.dll库。

2014-10-08

apache XML-RPC 实现

commons-logging-1.1.jar ws-commons-util-1.0.2.jar xmlrpc-client-3.1.3.jar xmlrpc-common-3.1.3.jar xmlrpc-server-3.1.3.jar

2014-03-06

w3c帮助文档(W3CSchool.chm)

w3c帮助文档,不仅仅只有javascript哦!

2013-07-17

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除