- 博客(21)
- 收藏
- 关注
转载 iphdrinc.c
// Module Name: iphdrinc.c//#pragma pack(1)#define WIN32_LEAN_AND_MEAN#include #include #include #include #define MAX_MESSAGE 4068#define MAX_PACKET 4096//// S
2006-03-05 22:58:00 1685
原创 http://spaces.msn.com/members/dtianx/
I have moved my blog to MSN space..http://spaces.msn.com/members/dtianx/
2005-11-05 13:35:00 2579
原创 Call Web Service from a VC++ 6.0 Client
What you need :Microsoft SOAP toolkit 3.0 with Microsoft XML 2.0 included.Microsoft Visual C++ 6.0, we use it create client application.Microsoft Visual Studio.NET, we use VC# to create web service.VC
2005-02-28 13:49:00 3600 3
原创 Show how to print a table in a html page
function printTable(obj) { var winname = window.open(, "_blank", toolbar=no,menubar=yes,scrollbars=yes, resizable=yes,location=no, status=yes);
2005-02-22 15:04:00 2054 1
原创 实现MSDN China的导航Panel
昨天到CodeProject逛,去看ASP.NET。看到一个好东西。真的很好。具体效果是这样的:http://www.codeproject.com/aspnet/webpartscontrol.asp就是左边的那个东西。粗看没有什么。只是看着很舒服而已。下过看了下。呵呵,不光能够折叠,还能拖动,排序呢。一时兴趣大增。看了半天才发现。哎!这么个东西只能弄成导航条就没有多大的意义咯。想自己动手搞个。
2005-01-21 21:28:00 2936 2
原创 A friends walks in when the rest of the world walks out
Sometimes in life,You will find a special friends;Someone who changes your life just being part of it.Someone who makes you laugh until you can not stop;Someone who makes you believe that there really
2005-01-08 14:54:00 2534
原创 PlaneRigidFrameCalcer
function ToggleSourceCodeRegion(regionNumber) { var divRegion = document.getElementById(region + regionNumber); var divRegionBlock = document.getElementById(regionBlock + regionNumber
2005-01-07 20:58:00 1950
原创 CRichEditCtrl for Syntax HighLighting
1void CTWScriptEdit::FormatTextRange(int nStart, int nEnd)2{3 if (nStart >= nEnd)4 return;56 m_bInForcedChange = TRUE;78 CHARRANGE crOldSel;910 GetSel(crOldSel);11 LockWindowUpdat
2004-12-22 19:50:00 2934 4
原创 COM Interface Hooking and Its Application --- Tutorial of Designing & Implementing Program Interacting with MSN Messenger 6.0+ (
from www.codeguru.comEnvironment: VC6+SP5 or VC7 (including SPY++, Depends, DataObject Viewer and OLE Viewer), MS Platform Core SDK, MSN Messenger 6.0, Resource Hacker, Process Explorer, and Process S
2004-12-20 19:34:00 11414 4
原创 Matrix Operations for Image Processing
Matrix Operations for Image ProcessingPaul HaeberliNov 1993 IntroductionFour by four matrices are commonly used to transform geometry for 3D rendering. These matrices may also be u
2004-12-12 20:04:00 2733
原创 When I ...
When I step forward.I move backword.When I try to breath.I suffocate.When I want to smile.I cry.When I remember your laugh.I want to die.You defined me.Sharp my world.Now you are gone.And nothing is r
2004-12-09 21:22:00 1648 1
原创 错了,又错了
Msn Messager的工具栏,按钮什么的都可以改变颜色。呵呵,真是好玩。翻出ResHacker, 我的天。那么多的BITMAP, GIF, JPEG, PNG.看完了BITMAP,GIF, JPEG,还是没有找到皮肤的影子。想了半天,觉得那些界面都是画出来的,能换颜色当然很正常了。为了能通过一个颜色得到一系列的颜色来绘制渐变,立体按钮,还搞了半天HSL Color Space. 终于整出了这样
2004-12-06 13:48:00 2246 1
原创 MSN 界面 模拟 (三)Msn Style Colorful Toolbar
Give me a color, I will get a nice toolbar. :)
2004-12-05 15:20:00 3376 1
原创 MSN 界面 模拟 (二)Msn Style Colorful Button
In msn messager, you can see a nice button.you can select any color, and msn messager will draw a 3D like button.I try to make a button like this, when you select a color, how can I draw a 3D like b
2004-12-04 22:47:00 3327 1
原创 MSN 界面 模拟 (-)
上次的MSN / QQ 中的RichEdit 的文章受到了大家的关注。很是高兴。很多朋友要源代码,我没有给。因为这个是给别人做的,我会交付了产品后,给大家代码的(实际上核心代码就那么多了)。现在实现MSN界面,由于它的界面元素都可以换颜色。所以都必须自行绘制。先给个图片看看。要去上课了,下次再说:)MSN的工具栏很有意思。不是标准形状的。而且可以换色。我在为怎么绘制它发愁呢。哪位有高见?
2004-11-22 15:49:00 3419
原创 MSN / QQ 中的CRichEditCtrl (四) —— 动画表情(Full Source Code)
Full Source Code Here : http://www.codeproject.com/richedit/AnimatedEmoticon.asp首先对标题说明一下,在MSN中,聊天的窗口可能是一个自定义的类。大家用Spy ++可以看看。对与自定义窗口,可以使用CreateWindow, SetWindowLong或者是SubclassWindow实现,不过这不是我现在讨论的话题。好
2004-11-17 22:53:00 24496 79
原创 MSN / QQ 中的CRichEditCtrl (一) —— 背景
首先对标题说明一下,在MSN中,聊天的窗口可能是一个自定义的类。大家用Spy ++可以看看。对与自定义窗口,可以使用CreateWindow, SetWindowLong或者是SubclassWindow实现,不过这不是我现在讨论的话题。好, 先看看效果再说:我实现的主要就是:(一)字体格式; (二)超链接;(三)背景图片;(四)动画表情关于背景的实现,我看了blog上的一篇文章,知道了不
2004-11-17 22:33:00 4335
原创 Reference and Exception in WebServices
WebService是个好东西,这样可以利用远程的WebMethod,而且就像使用本地的方法一样的简单。呵呵,那我们就直接开始吧。首先我们建一个WebService Solution,我选的是C#,dotNET的母语。这样一个框架就生成了,我们首先做的是写一个函数,返回一些数据。打开SQL Server,你可以看到NorthWind这个数据库的,你有SQL Server就有这个数据库的,但是你删了
2004-10-29 12:07:00 1727 1
原创 MSN / QQ 中的CRichEditCtrl (一) —— 超链接
首先对标题说明一下,在MSN中,聊天的窗口可能是一个自定义的类。大家用Spy ++可以看看。对与自定义窗口,可以使用CreateWindow, SetWindowLong或者是SubclassWindow实现,不过这不是我现在讨论的话题。好, 先看看效果再说:我实现的主要就是:(一)字体格式; (二)超链接;(三)背景图片;(四)动画表情关于HyperLink的是实现,我在www.co
2004-10-27 13:57:00 4401 3
原创 MSN / QQ 中的CRichEditCtrl (一) —— 字体改变
首先对标题说明一下,在MSN中,聊天的窗口可能是一个自定义的类。大家用Spy ++可以看看。对与自定义窗口,可以使用CreateWindow, SetWindowLong或者是SubclassWindow实现,不过这不是我现在讨论的话题。好, 先看看效果再说:我实现的主要就是:(一)字体格式; (二)超链接;(三)背景图片;(四)动画表情好,开始咯。字体的实现是很简单的,我没有使用rt
2004-10-22 13:21:00 4159 3
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人