77 excel-app handle of application.
77 excel-doc handle of workbook.
77 excel-sheets handle of sheets.
77 excel-worksheet handle of worksheet.
PROCEDURE DIVISION.
Main Section.
create @Application of @Excel handle in excel-app.
modify excel-app @Workbooks::Add() giving excel-doc.
inquire excel-doc sheets() in excel-sheets.
inquire excel-sheets item(1) in excel-worksheet.
inquire excel-worksheet cells in excel-range.
MODIFY excel-worksheet Range("A1")::Value = "테스트". (Value = "TEST")
...
Cerate Excel Sheet.
Value = "테스트" -> A1 Text value : Å×½ºÆ®
Value = "TEST" -> A1 Text value : TEST
Why, not support is Korea Language Code??