請教先進大大
With Sheets("TempA")
Sheets("Temp").Range(Cells(1324, 71), Cells(1380, 80)).Copy .Cells(4, 5)
End With
出現錯誤1004
而改用
With Sheets("TempA")
Sheets("Temp").Range("BS1324:CB1380").Copy .Cells(4, 5)
End With
就可以
為什麼呢?
以前常用Range(Cells(1,1),cells(2,4))取代Range("A1:D2")是可行的呀!
為什麼呢?作者: Hsieh 時間: 2014-6-30 09:52
回復 5#Hsieh
請教Hseih 版大 個人參考您的 可否幫我檢視
'取消視窗的...
Sub hideAll()
With Application
If .Version >= 12# Then
Application.DisplayFullScreen = False
Else
'將2003所有命令列隱藏
For Each theBar In .CommandBars
'將顯示中的命令列收集起來並隱藏
On Error Resume Next
If theBar.Enabled Then
theCollection.Add theBar, theBar.Name
theBar.Enabled = False
End If
On Error GoTo 0
Next
'2003狀態列
.DisplayStatusBar = False
End If
.DisplayFormulaBar = False
.DisplayScrollBars = True
.Caption = " "
.ActiveWindow.Caption = ""
.ActiveWindow.DisplayHeadings = True
.ActiveWindow.DisplayWorkbookTabs = False
.WindowState = xlMaximized
End With
app_Initialize
canClose = "False"
End Sub
[attach]18608[/attach][attach]18609[/attach]又如附件 開起密碼 520
在office2010 2013 均出現 "編譯錯誤發生於此隱藏模組"-----
可否幫我開開看 錯誤在哪?
(將登錄檔0701.xls 置入學生管理資料夾開0701.xls)作者: yangjie 時間: 2014-7-2 23:43