VBScript
[VBScript] - VBScript 에서 Excel 호출하기
Vivara
2013. 3. 21. 16:41
반응형
/** 방법 1 **/
Dim app
set app = CreateObject("Excel.Application")
app.Visible = True
app.UserControl = true
/** 방법 2 **/
Dim oShell
Set oShell = WScript.CreateObject ("WSCript.shell")
oShell.Run "excel.exe"
반응형