[リストへもどる]   [VBレスキュー(花ちゃん)]
一括表示

投稿時間:2006/09/25(Mon) 21:59
投稿者名:こう
Eメール:
URL :
タイトル:
シート名の設定
VB6.0からExcelを起動し、保存しようとしています。
その際、シート名も設定したいのですが、どうすればよいのですか。

-------------------
    Dim xlApp   As Excel.Application
    Dim xlBook  As Excel.Workbook
    Dim xlSheet As Excel.Worksheet

    Dim str_File As String
    Dim str_today As String

    Set xlApp = CreateObject("Excel.Application")
    Set xlBook = xlApp.Workbooks.Add
    Set xlSheet = xlBook.Worksheets(1)

    str_today = Year(Date) & Format(Month(Date), "0#") & Format(Day(Date), "0#")
    str_File = "c:\temp\test_" & str_today & ".xls"

    処理

    xlSheet.SaveAs str_File

    xlApp.Quit
    Set xlSheet = Nothing
    Set xlBook = Nothing
    Set xlApp = Nothing
----------

Set xlSheet = xlBook.Worksheets("test")
とすると、ファイルが作成されません。

投稿時間:2006/09/25(Mon) 22:30
投稿者名:Blue
Eメール:
URL :
タイトル:
Re: シート名の設定
xlSheet.Name = "test"
xlBook.SaveAs str_File

とすれとどうでしょうか?

投稿時間:2006/09/26(Tue) 10:02
投稿者名:こう
Eメール:
URL :
タイトル:
Re^2: シート名の設定
> xlSheet.Name = "test"
> xlBook.SaveAs str_File
>
> とすれとどうでしょうか?
ありがとうございます。
上手くいきました。