"InsertPic" Excel 2007問題
2003運行完全沒問題的 , 但2007就運行不能了
(閱讀全文)Use VBA SaveAs in Excel 2007
Information
If you run the code in Excel 2007 it will look at the FileFormat of the parent workbook and save the new file in that format.
Only if the parent workbook is an xlsm file and if there is no code in the new workbook it will save the new file as xlsx,
If the parent workbook is not an xlsx, xlsm, or xls then it will be saved as xlsb.
This are the main formats in Excel 2007 :
51 = xlOpenXMLWorkbook (without macro's in 2007, xlsx)
52 = xlOpenXMLWorkbookMacroEnabled (with or without macro's in 2007, xlsm)
50 = xlExcel12 (Excel Binary Workbook in 2007 with or without macro’s, xlsb)
56 = xlExcel8 (97-2003 format in Excel 2007, xls)
More details and examples: http://www.rondebruin.nl/saveas.htm
(閱讀全文)
Application.filesearch Replacement For Office 2007
Please read this post:
http://www.ozgrid.com/forum/showthread.php?t=71409
關於清空Office的剪切板
wangminbai 一位令我對 Excel 再產生興趣的小伙子
A remarkable topic to clear Office Clipboard written in Chinese Simplified.
(閱讀全文)
判斷 Excel 單格是否處於編輯狀態
以下代碼就是當處於編輯狀態時在Excel的狀態欄上顯示 正處於編輯狀態…
The code will display "Excel in edit mode ......" in Status bar if Excel is in edit mode
(閱讀全文)
顯示自定檢視模式名稱 CurrentViews
Function CurrentView(Optional DummyArg As Variant) As StringSub Test()
'Application.DisplayStatusBar = True
'Application.StatusBar = CurrentView
MsgBox CurrentView
End Sub
Download Videos from YouTube
Please read Download Videos from YouTube by Ivan F Moala