Excel 論壇 ExcelHelp.net 將會於2010年8月初關閉
|
Carson 發表的全文轉載:
(閱讀全文)
VBA 清除立即窗口内容
Sub DelInImmedate()
Debug.Print Now
Application.SendKeys "^g ^a {DEL}"
End Sub
API Method: http://www.dailydoseofexcel.com/archives/2004/06/09/clear-the-immediate-window/
測試 剪貼板上無內容
如果要判斷剪貼簿是否有資料可以使用 CountClipboardFormats API 函數
Declare Function CountClipboardFormats Lib "user32" () As Long
Function IsClipboardEmpty() As Boolean
If CountClipboardFormats = 0 Then
IsClipboardEmpty = True
Else
IsClipboardEmpty = False
End If
End Function
(閱讀全文)
ExtractFlash 已廣泛地 "私人化"
這 ExcelHome 文章完全沒有提過 !!!!
http://club.excelhome.net/thread-237225-1-1.html
(閱讀全文)
Filtering by Color in Excel 2007
A VBA topic on Filtering by the Active Cell's Value, Font Color or Fill Color in Excel 2007 by Ron de Bruin.
Details: http://www.rondebruin.nl/colorfilter2007.htm
The above link also lead you to download an Add-in (CommandBar Tools) to find ID numbers.
Excel 2007 與 2003 中顯示的顏色不一至
在Excel 2007中編輯好的檔案,其中背景顏色(圖案顏色)為綠色,到了另外幾台電腦中用2003打開時卻顯示為黃色。(閱讀全文)