<?php /* Function Written by Nelson Neoh @3/2004. For those who wants to utilize this code, please do not remove this remark. If you have done any enhancement to this code, please post the copy at http://www.dev-club.com PHP board. Thank you. Function usage: calendar(Month,Year) */ function calendar($MM,$YYYY){ &...[ 查看全文 ]
通过以下的VBA代码,将其放到工作表的双击事件中,就能取到双击工作表的列标题(双击列的名字),当前列自动进行排序。 比如,将代码放在如下的事件中: Private Sub Worksheet_SelectionChange(ByVal Target As Range) End Sub 代码如下: Dim YouRg As Range If Target.Column = Me.Cells (1,1).CurrentRegion.Columns.Count And Target.Row = 1 Then If Target.Column mnColumn Then mnColumn = T...[ 查看全文 ]
几个 Windows 到 Linux 的代码移植问题 编译:Northtibet 1、在 Linux 实现 Win32 API 之 GetTickCount 函数 为了将 Windows 中的 GetTickCount API 函数移植到 Linux,可以使用如下的代码: long GetTickCount(){ tms tm; return times(&tm);} 2、 Windows 和 Linux 系统关于 itoa 的移植问题 大家知道,在将 Windows 的 STL 代码移...[ 查看全文 ]