导航

2006年2月15日

摘要: const WM_MouseEnter = $B013; WM_MouseLeave = $B014;type TfrmMain = class(TForm) . . Timer1: TTimer; procedure Timer1Timer(Sender: TObject); protected procedure WMMouseEnter(va... 阅读全文

posted @ 2006-02-15 18:04 xujh 阅读(2478) 评论(1) 推荐(0) 编辑

摘要: 代码很简单type TfrmMain = class(TForm) . . protected procedure WndProc(var Message: TMessage);override; end; implementation {$R *.dfm} procedure TfrmMain.WndProc(var Message: TMessa... 阅读全文

posted @ 2006-02-15 15:30 xujh 阅读(1610) 评论(0) 推荐(0) 编辑

2005年12月28日

摘要: 转自微软的例子using System;using System.Windows.Forms;using System.Collections;using System.Drawing;using System.Data;using System.Reflection; using System.Drawing.Imaging; namespace SmartUI { enum MailI... 阅读全文

posted @ 2005-12-28 21:59 xujh 阅读(1197) 评论(0) 推荐(0) 编辑

2005年12月27日

摘要: using System;using System.Runtime.InteropServices;using System.Windows.Forms; namespace SmartPhone{ /// ///InputModeEditor的摘要说明。 /// public class InputModeEditor { publ... 阅读全文

posted @ 2005-12-27 22:48 xujh 阅读(611) 评论(2) 推荐(0) 编辑

2005年12月25日

摘要: 方法一:采用自定义类using System;using System.Runtime.InteropServices;using System.Text; namespace SmartPhone{ /// /// SMS helper class. /// public class SMS { public SMS() { ... 阅读全文

posted @ 2005-12-25 21:35 xujh 阅读(1378) 评论(2) 推荐(0) 编辑

2005年12月15日

摘要: A.安装开发工具 安装准备:先安装Mobile Application Development Toolkit,并仔细阅读其中的内容 1.Microsoft ActiveSync 4.1 - Worldwide English 2.Visual Studio.NET 2003 3.SDK for Windows Mobile 2003-based Smartphones 4.Emula... 阅读全文

posted @ 2005-12-15 11:56 xujh 阅读(1724) 评论(3) 推荐(0) 编辑

2005年12月4日

摘要: 千辛万苦才查阅资料写出来的,自己高兴一下。转换类支持8/16位,6000/8000采样率,ADPCM,muLaw,aLaw多种格式的Vox转换。 很奇怪的是,华为的ICD平台录下来的音格式上有微小不同,一个平台的语音用我们这个程序可以正常转换,但另一个平台的录音转换完之后却丢失0轴以上的波形,但听起来声音基本一样。估计2个平台选用的录音卡有所不同。可是,用CoolEdit却可以正常显示2个语音的波... 阅读全文

posted @ 2005-12-04 14:52 xujh 阅读(4577) 评论(15) 推荐(0) 编辑

2005年11月2日

摘要: 服务端安装1.安装Microsoft Visual SourceSafe2005到一台服务器,安装模式选择Full2.运行Microsoft Visual SourceSafe Administration3.建立一个新的数据库,记住数据库所在目录,并将之设置为共享,权限为完全控制4.添加新用户客户端安装5.在本地机器安装Microsoft Visual SourceSafe2005,安装模式可以... 阅读全文

posted @ 2005-11-02 12:06 xujh 阅读(822) 评论(0) 推荐(0) 编辑

2005年8月1日

摘要: 第一种,将DataGrid作为参数传入,将DataGrid转成Excel public bool ToExcel(System.Web.UI.Control ctl) { try { HttpContext.Current.Response.AppendHeader("Content-Disposition","attachment;filename=Excel.xls"); ... 阅读全文

posted @ 2005-08-01 10:05 xujh 阅读(2442) 评论(0) 推荐(0) 编辑

2005年6月20日

摘要: 问题安装完ASP.NET,Oracle9i客户端后,使用System.Data.OracleClient访问Oracle数据库时收到如下信息 System.Data.OracleClient requires Oracle client software version 8.1.7 or greater. 原因Oracle 9i Release 2 客户端在安装到Windows的NTFS分区下时的... 阅读全文

posted @ 2005-06-20 15:51 xujh 阅读(452) 评论(0) 推荐(0) 编辑