自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

喜怒形于色

You jump,I jump

  • 博客(8)
  • 资源 (62)
  • 问答 (1)
  • 收藏
  • 关注

原创 .Net线程足迹(三)——IsAlive属性

using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading;namespace ThreadDemo{ class Program { static void Main(string[

2010-04-29 16:25:00 2210

原创 .Net线程足迹(二) ——传递参数至线程

方法一:应用ParameterizedThreadStart这个委托来传递输入参数,这种方法适用于传递单个参数的情况。using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Lin

2010-04-26 15:19:00 3397

原创 SQLite启动事物

事务(DbTransaction):SQLite 缺省为每个操作启动一个事务,所以成批插入的时候,启动事务,比不启动事务快n倍。 在没启动事务之前往Sqlite数据库里插入1000多条数据的情况,结果每次都需要一两分钟才能完成.而在启动事物以后所需要的时间直接变成不到2秒!原来sqlite花两分钟是由于ExecuteNonQuery方法执行时自己提交了更新事务,默认执行更新操作是会自动

2010-04-16 15:22:00 2259

原创 .Net线程足迹(一)

开始学习线程了,做个记录:) 1、在这个小例子里,将创建一个新线程,我们将用两个线程演示多线程的工作方式。 using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading;namespace ManualResetEv

2010-04-14 14:25:00 1517

转载 Control.Invoke&Control.BeginInvoke

只在创建控件的线程里设置控件的属性当然是可以的,但是两个线程都在自顾自的运行,我有什么办法让别的线程停下手头的工作,来执行我分派的任务,这又不是两个人,我可以跟他说下。嘿,您还别说,这里的机制还真像两个人,甲线程发个短信给乙线程说,哥们,我有个事儿自己不好处理,怕出问题,你抽空儿给我处理下。根据甲线程发短信的方式,甲线程要么发了短信后就忙自己的事儿然后等乙线程处理完后的消息,要么一直在那里傻傻的等

2010-04-09 15:34:00 1757

转载 Invoke and BeginInvoke

在Invoke或者BeginInvoke的使用中无一例外地使用了委托Delegate。  一、为什么Control类提供了Invoke和BeginInvoke机制?关于这个问题的最主要的原因已经是dotnet程序员众所周知的,我在此费点笔墨再次记录到自己的日志,以便日后提醒一下自己。1、windows程序消息机制Windows GUI程序是基于消息机制的,有个主线程维护着一个消息泵

2010-04-09 13:52:00 594

原创 Windows窗口和消息

    进行Windows程序设计,实际上是在进行一种对象导向的程序设计(OOP)。这种对象正是Windows之所以命名为「Windows」的原因。作为对象,使用者会在屏幕上看到这些窗口,并通过键盘和鼠标直接与它们进行交互操作。窗口以「消息」的形式接收窗口的输入,窗口也用消息与其它窗口通讯。     这有一个Windows的消息范例:我们知道,大多数的Windows程序都有大小合适的应用程

2010-04-09 13:45:00 1017

原创 Delegate.BeginInvoke例子

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;namesp

2010-04-09 13:19:00 8471

OpenNETCF.Desktop.Communication.dll

OpenNETCF.Desktop.Communication.dll

2009-05-03

Reflector(.Net的Dll反编译工具)

.Net的Dll反编译工具,备份资源,非常有用的小软件!

2009-04-29

如何编程动态创建 TreeView (WinForms版)

如何编程动态创建 TreeView (WinForms版),C#源代码,简单小程序

2009-04-29

Oracle学习相关资料大全

Oracle学习相关资料,好资源分享给大家!包括Oracle数据库基础、学习oracle入门课件、Oracle从入门到精通、oracle电子书、及课程相关PDF、PPT、WORD等文件资料!

2009-04-24

JavaScript基础教程(PDF文件)

JavaScript基础教程(PDF文件),还不错!资源备份

2009-04-24

2009-4-21(2009-4-21)

2009-4-212009-4-212009-4-212009-4-212009-4-212009-4-212009-4-212009-4-212009-4-212009-4-21

2009-04-21

C#取手机IEMI、ISMI等设备信息

C#取手机IEMI、ISMI等设备信息!!!!!!!!

2009-04-16

Windows Mobile 5.0中的开发新特性

Windows Mobile 5.0中的开发新特性,主讲移动解决方案技术专家 张炜

2009-04-15

Net CF中电话状态的捕获

Net CF中电话状态的捕获,即如何在Windows Mobile 5.0以上的系统中获取电话状态,如接通,挂断等等,C#描述。

2009-04-15

在.NET Compact Framework中获取来电号码和屏蔽来电

在.NET Compact Framework中获取来电号码和屏蔽来电,代码备份!

2009-04-15

用于收集和监视系统的很多状态信息及监控注册表的Demo

SystemState:用于收集和监视系统的很多状态信息,包括日历、邮件、电话、同步、电源等。 RegistryState:用于监视注册表某键值发生变化

2009-04-15

Get IMEI Through TAPI

Get IMEI Through TAPI ,VB源码!!!!!!资源共享给大家!

2009-04-14

Log Manager By Jim Gray

Log Manager By Jim Gray!PPT文件!!!!

2009-04-14

Mobile Tracker Application for SmartPhones

This article is just a small effort to save my SmartPhone :). The Mobile Tracker application is designed not only to keep track of your device, but for the end developer to learn about TAPI, Phone/SMS API, Registry reading and writing, P/Invoke, IMSI and IMEI etc... http://www.codeproject.com/KB/mobile/_mobile_tracker.aspx

2009-04-14

Getting a Millisecond-Resolution DateTime under Windows CE

Getting a Millisecond-Resolution DateTime under Windows CE,C#源代码及PDF文件

2009-04-10

将DataTable数据导出到EXCEL文件 c#源代码

DataGrid显示数据,将DataTable数据导出到EXCEL文件 c#源代码!!!

2009-04-09

读取Excel数据到DataGrid c#代码

读取Excel数据到DataGrid c#代码,从网上下载的资料,荐! http://www.codeproject.com/KB/office/microsoftexcelclient.aspx

2009-04-09

C#中通过RIL获得基站信息

C#中通过RIL获得基站信息,备份资源!!!

2009-04-06

PocketPCServiceMFCSample

sample service written using MFC .备份有用资源,Pocket PC上一个DLL程序

2009-04-01

Pocket PC services

sample service written without MFC . Often Pocket PC programs need a background process and most of existing Pocket PC programs implement it by creating an executable file which is started during system start-up. But Pocket PC has 32 processes limit and having many different programs running in background can be a serious problem. Pocket PC 2003 provides special mechanism implemented in Services.exe that allows Pocket PC developers to shape their background applications into services that run in one process as different threads. This article describes creating Pocket PC services, distributing them and gives a solution to run services on Pocket PC 2000 and 2002 platforms.

2009-04-01

winform分页用户自定义控件

winform分页用户自定义控件;c#;VS2013;

2021-08-11

PdfiumViewer-master(Framwork4.0).rar

.net的pdf操作控件PdfiumViewer(免费开源),亲测可用,Framwork4.0,可以打开PDF文件、预览及打印。有需要的可以看一下,官网也有下载。

2020-07-10

QTP基础教程

QTP基础,PPT、DOC文档。资源备份!!!!!!!!!!!!!!

2011-09-08

Windows CE 数据库程序开发

Windows CE 数据库程序开发,PDF文件。

2010-07-14

SQL Server CE Query Tool

User friendly query designer and data manipulation tool for SQL Server CE from:http://www.codeproject.com/KB/database/CEQuery.aspx

2010-07-14

FTP专业服务器软件.

FTP专业服务器软件.FTP专业服务器软件.FTP专业服务器软件.FTP专业服务器软件.

2009-09-15

MessageBOX

MessageBOXMessageBOXMessageBOXMessageBOXMessageBOXMessageBOX,资源备份

2009-09-01

Add Custom Properties to a PropertyGrid

Add Custom Properties to a PropertyGrid.c#属性有用的例子。 http://www.codeproject.com/KB/vb/PropertyGridEx.aspx

2009-08-29

观止——微软创建NT和未来的夺命狂奔(中、英)PDF

观止——微软创建NT和未来的夺命狂奔(中、英)PDF,英文全集,中文只有前三章。

2009-08-28

程序开发心理-温伯格

程序开发心理,温伯格的经典大作,推荐!!!

2009-08-04

成为技术领导者-温伯格(第一部分)

成为技术领导者,温伯格非常好的一本书,推荐

2009-08-04

下拉树控件(c#-Mobile)

下拉树控件,MOBILE下的下拉树控件,MOBILE下的

2009-07-29

PPC取设备唯一号GetDeviceUniqueID

http://blogs.msdn.com/windowsmobile/archive/2006/01/09/510997.aspx

2009-07-02

A TreeView Control with ComboBox Dropdown Nodes

A TreeView Control with ComboBox Dropdown Nodes,来源CODEProject http://www.codeproject.com/KB/tree/DropDownTreeView.aspx

2009-06-13

Custom ComboBoxes with Advanced Drop-down Features

Custom ComboBoxes with Advanced Drop-down Features,来源网络,非常好的东东~ http://www.codeproject.com/KB/miscctrl/customcombos.aspx

2009-06-09

MAPIlib.dll下载及测试小程序

MAPIlib.dll下载及测试小程序,c++的,资源共享。。。。。

2009-06-01

C#电子书(PDF文件)

C#电子书(PDF文件)C#电子书(PDF文件)

2009-05-25

mobile下用c#获得联系人包括SIM卡联系人号码

mobile下用c#获得联系人包括SIM卡联系人号码,资源来自网络,未测试

2009-05-18

使用 OpenNETCF.Desktop.Communication.dll拷贝设备文件到PC

Using OpenNetCF RAPI Wrapper Class to Manage Files on a Handheld Device Running Windows Mobile OS

2009-05-15

sharpziplib(0.84)dll下载

sharpziplib(0.84)dll下载,可以进行文件的压缩及解压缩操作!!

2009-05-08

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

TA关注的人

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