投稿日 | : 2004/12/08(Wed) 13:03 |
投稿者 | : LESIA |
Eメール | : |
URL | : |
タイトル | : Re^6: EXCELの操作関連につきまして |
> Set xlApp = GetObject(, "Excel.Application")
> Set xlSheet = xlApp.Sheets(1)
xlBookも使うなら
Set xlApp = GetObject(, "Excel.Application")
Set xlBook = xlApp.ActiveWorkbook
Set xlSheet = xlBook.Sheets(1)
ですね。