'스프레드에서 엑셀 부르기
'spd :스프레드 id 변수
'excel_path : 파일이름및 경로변수
Sub mnuOpen_Click(spd,excel_path)
dim listcount,handle
dim List()
dim sheet
dim v, x, y, z
spd.ScriptEnhanced=true
v=spd.IsExcelFile(excel_path)
' returns number of sheets as ListCount
w=spd.ScriptGetExcelSheetList(excel_path, Null, listcount, 0, handle, true)
ReDim List(listcount)
x=spd.ScriptGetExcelSheetList(excel_path, List, listcount, 0, handle, true)
sheet=List(0)
y=spd.ImportExcelSheet(cint(handle), sheet)
End Sub
'spd :스프레드 id 변수
'excel_path : 파일이름및 경로변수
Sub mnuOpen_Click(spd,excel_path)
dim listcount,handle
dim List()
dim sheet
dim v, x, y, z
spd.ScriptEnhanced=true
v=spd.IsExcelFile(excel_path)
' returns number of sheets as ListCount
w=spd.ScriptGetExcelSheetList(excel_path, Null, listcount, 0, handle, true)
ReDim List(listcount)
x=spd.ScriptGetExcelSheetList(excel_path, List, listcount, 0, handle, true)
sheet=List(0)
y=spd.ImportExcelSheet(cint(handle), sheet)
End Sub
'asp' 카테고리의 다른 글
정적SQL 이용하는데 (0) | 2007.05.03 |
---|---|
SQL - update를 편하게 해주는 펑션(Function (2) | 2007.05.03 |
엑셀(Excel)로 변환하기 소스 (0) | 2007.05.02 |
오라클 BLOB 타입을 이미지형태로 웹페이지에서 보기 (1) | 2007.05.02 |
ADO ASP Guide Ver 1.0 (1) | 2007.05.02 |