excel,word 열기

1657 단어 Excel
Set excelApp = CreateObject("excel.Application")
excelApp.Visible = true
excelApp.Workbooks.Open "d:\1.xls"
Set osheet = excelApp.Sheets.Item(1) ' sheet
osheet.Name = "hello"
osheet.Cells(1,1) = "test123" ' 
excelApp.ActiveWorkbook.Save
Set excelApp = nothing

이렇게 excle를 조작하는 방식으로 나중에 테스트 보고서를 사용자 정의할 수 있습니다
 
Excel을 생성할 수도 있습니다.Application 객체를 사용하여 Excel 파일을 조작합니다.
Set ExcelApp = CreateObject(Excel. Application) ExcelApp 객체 만들기
Set ExcelWor=ExcelApp.Workbooks.Open("C:/Users/luyime/Desktop/another.xls") "excel 파일 워크북 열기
Set ExcelShe=ExcelWor.Worksheets("Sheet1").UsedRange "여기는 Sheet1에서 사용하는 셀의 범위를 나타내는 UsedRange를 사용해야 합니다. 그렇지 않으면 모든 셀이 인쇄됩니다."
rowcount=ExcelShe.Rows.count'사용된 셀 행 수 계산하기
columncount=ExcelShe.Columns.count'사용된 칸의 열 수를 계산합니다.
For i=1 to rowcount
                      For j=1 to columncount
                                                      Msgbox ExcelShe.Cells(i, j) 셀의 내용 인쇄
                      Next     
Next
Set ExcelShe=Nothing
ExcelWor.Close'워크북 객체 닫기
ExcelApp.Quit ExcelApp 객체 종료
이상은 주로 WorkSheet 객체의 일부 속성과 방법을 이용했습니다. 예를 들어 UsedRange, Cells, Rows, Columns 등입니다.
 
 
다음은 조작word입니다.
Set wobj = CreateObject(”Word.Application”)
wobj.Visible = True
Set Doc = wobj.Documents.Add
Set Range = Doc.Paragraphs.Add.Range
Range.Text = “The first Paragraph”
Doc.Paragraphs.Add
Set Range2 = Doc.Paragraphs.Add.Range
Range2.Text = “The second Paragraph”

좋은 웹페이지 즐겨찾기