自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(11)
  • 资源 (18)
  • 收藏
  • 关注

原创 动态调用WebService 的相关方法

来源:网络,不过修改了一个小地方,原来的CSharpCodeProvider csc = new CSharpCodeProvider();ICodeCompiler icc = csc.CreateCompiler();会提示已经过时,现在修改为  CodeDomProvider csc= CodeDomProvider.CreateProvider("CSharp");

2013-01-31 17:05:01 4660

原创 .net 调用Oracle存储过程

1. Oracle存储过程:   可以先创建一个通用的包,再创建存储过程:--创建包create or replace package pkg_empas type result_type is ref cursor;end pkg_emp;--创建存储过程create or replace procedure getEmpData( p_sursor ou

2013-01-28 23:37:29 1028

原创 WinForm控制progressBar 进度的一个简单方法

保持progressBar的默认Mininum=0不变,  在任务开始时设置Maximum的值为任务总数,如有10个任务,则设置progressBar1.Maximum=10;当完成一个任务时Value就加1:progressBar1.Value++;

2013-01-24 23:47:40 6229 1

原创 App.config提示错误“配置系统未能初始化”

解决:"如果配置文件中包含 configSections 元素,则 configSections 元素必须是configuration 元素的第一个子元素。"所以它前面如果有connectionStrings或其它节点,必须把connectionStrings放到它的后面。

2013-01-23 10:59:53 7098 1

转载 VS2010中的调试技巧

转自:http://kb.cnblogs.com/page/92158/这是我的博客中关于VS 2010和.NET 4发布系列的第二十六篇文章。  今天的博文将介绍Visual Studio中的一些实用调试技巧。这是受我朋友Scott Cate (他发表过几十篇很棒的VS技术文章) 启发。他最近告诉我,许多Visual Studio下的程序员,甚至一些很有经验的开发人员,都不知

2013-01-20 11:05:28 1041

转载 用C#实现的条形码和二维码编码解码器

转自:http://www.cnblogs.com/tuyile006/archive/2013/01/16/2863367.html本篇介绍可以在C#中使用的1D/2D编码解码器。条形码的应用已经非常普遍,几乎所有超市里面的商品上面都印有条形码;二维码也开始应用到很多场合,如火车票有二维码识别、网易的首页有二维码图标,用户只需要用手机扫描一下就可以看到手机版网易的网址,免去了

2013-01-17 21:58:13 26557 5

原创 ORACLE sql 判断字段中某个字符出现次数

select * from 表 where length(字段)-length(replace(字段, '字符', ''))=1 --出现1次

2013-01-14 10:38:41 8203

转载 Parallel task in C# 4.0

来源:http://www.dotnetjalps.com/2012/12/Parallel-task-with-task-parallel-library-in-Csharp.htmlIn today’s computing world  is all about Parallel processing. You have multicore CPU where you have dif

2013-01-10 09:55:47 1341

原创 jQuery编辑器KindEditor4.1.4代码高亮显示设置

编辑器KindEditor官网: http://www.kindsoft.net/1、需要加载的JS和CSS文件为:2、编辑器初始化设置后,在里面加prettyPrint(): KindEditor.ready(function (K) { window.EditorObject = K.create('#txtBody', { cssP

2013-01-08 23:07:31 5392 1

原创 jquery模板插件jTemplates代替拼html

jQuery的jTemplates插件允许定义一个显示模板,在展现数据时根据选择的模板来动态生成。jQuery的jTemplates官方网站:http://jtemplates.tpython.com/原先的拼html代码如下:$("#Content").html(""); $.getJSON("ajax/item.ashx", { action: 'list', ac

2013-01-07 23:30:56 9098

原创 DropDownList根据下拉项的Text排序

有时候刚好表中没有可以排序的字段,又不想修改表结构,但它的项文本有序号,这时就可以用这方法排序,例如:测试页Default2.aspx: Default2.aspx.cs:using System;using System.Collections.Generic;using

2013-01-04 17:49:31 2357

PL/SQL美化器规则文件,用于格式美化sql语句

PL/SQL使用方法: 1、工具--首选项--用户界面--PL/SQL美化器--规则文件,选择.br的规则文件,点确定按钮。 2、点击工具栏的“PL/SQL美化器”,会自动把一段SQL语句重新排版美化。

2022-06-09

Objective-C基础教程(第2版).pdf

Objective-C基础教程(第2版).pdf,中文版。

2015-12-10

开源.NET FTP组件edtFTPnet.dll

开源.NET FTP组件edtFTPnet edtFTPnet官方网站: http://www.enterprisedt.com/products/edtftpnet/ 目前最新版本为2.2.3,下载后在bin目录中找到edtFTPnet.dll,在项目中添加引用。 用法:http://blog.csdn.net/gdjlc/article/details/12054881

2013-09-26

HTML解析工具Html Agility Pack v1.4.6

http://htmlagilitypack.codeplex.com/ This is an agile HTML parser that builds a read/write DOM and supports plain XPATH or XSLT (you actually don't HAVE to understand XPATH nor XSLT to use it, don't worry...). It is a .NET code library that allows you to parse "out of the web" HTML files. The parser is very tolerant with "real world" malformed HTML. The object model is very similar to what proposes System.Xml, but for HTML documents (or streams).

2013-09-18

文件比对工具WinMerge v2.14

http://winmerge.org/ WinMerge is an Open Source differencing and merging tool for Windows. WinMerge can compare both folders and files, presenting differences in a visual text format that is easy to understand and handle.

2013-09-18

SQLite数据库管理工具SQLiteStudio 2.1.4

http://sqlitestudio.pl/ SQLiteStudio is a SQLite database manager with the following features: Single executable file - no need to install or uninstall. Binary distribution is just the single, ready to use file. Intuitive interface, All SQLite3 and SQLite2 features wrapped within simple GUI, Cross-platform - runs on Windows 9x/2k/XP/2003/Vista/7, Linux, MacOS X, Solaris, FreeBSD and should work on other Unixes (not tested yet). Localizations, currently translated to: English, Polish, Spanish, German, Russian, Japanese, Italian, Dutch, Chinese, Exporting to various formats (SQL statements, CSV, HTML, XML, PDF, JSON, dBase), Importing data from various formats (CSV, dBase, custom text files [regular expressions]), Numerous small additions, like formatting code, history of queries executed in editor windows, on-the-fly syntax checking, and more, UTF-8 support, skinnable (interface can look native for Windows 9x/XP, KDE, GTK, Mac OS X, or draw widgets to fit for other environments, WindowMaker, etc), Configurable colors, fonts and shortcuts. Open source and free - Released under GPLv2 licence.

2013-09-18

.net程序反编译工具ILSpy 2.1

官网:http://ilspy.net/ ILSpy is the open-source .NET assembly browser and decompiler. Development started after Red Gate announced that the free version of .NET Reflector would cease to exist by end of February 2011. ILSpy requires the .NET Framework 4.0.

2013-09-18

读写Excel的组件npoi

官网:http://npoi.codeplex.com/ 介绍: Follow (605) Subscribe This project is the .NET version of POI Java project at http://poi.apache.org/. POI is an open source project which can help you read/write xls, doc, ppt files. It has a wide application. For example, you can use it to a. generate a Excel report without Microsoft Office suite installed on your server and more efficient than call Microsoft Excel ActiveX at background; b. extract text from Office documents to help you implement full-text indexing feature (most of time this feature is used to create search engines). c. extract images from Office documents d. generate Excel sheets that contains formulas

2013-07-26

CnPlugin_1.5.4.rar

备注:原来的模板template.dot在导出word后没有表格的边框,所以稍微修改了一下,覆盖原文件即可,路径:C:\Program Files\PLSQL Developer\PlugIns\CnPlugin\template.dot

2013-04-16

winform制作的精美时钟

参考了好多资料,终于做了一个winform时钟出来,效果及实现代码见: http://blog.csdn.net/gdjlc/article/details/8651485

2013-03-08

winform 为图片添加当月的日历并设为壁纸

winform 为图片添加当月的日历并设为壁纸,可以手动设置壁纸,也可以定时设置壁纸;最主要的特色是在图片上生成当前月的日历信息。

2013-02-28

c#二维码生成与解码

c#实现二维码的生成,解码,通过引用zxing实现

2013-01-17

Winform 通用分页控件

Winform 通用分页控件 转自http://cyq1162.blog.51cto.com/2127378/896084

2012-12-23

从QQ输入法提取出来的截图工具

从QQ五笔输入法提取出来的截图工具,直接就可以使用。。。

2011-06-25

正则表达式测试工具 Regex Tester

Regex Tester 用 C# 编写的用来测试正则表达式的工具,需要.Net Framework 2.0支持。

2011-06-18

Winform文本编辑器

Winform文本编辑器,有一个问题就是生成的HTML不是很好,有"<html><head></head><body>...."...

2010-10-09

winform 版fck文本编辑器

winform 版fck文本编辑器,用起来还不错,不过少了个编辑Html源码功能。

2010-10-09

空空如也

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

TA关注的人

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