ISPrincess
Programmer
With out alot of the dims, following is a "representation" of my code in asp page. The problem is "Showing" the spreadsheet. In other words - the .visible = true does not cut it.
Does anyone know what will then bring up excel and display this sheet to user?
Dim oXLApp
Dim oXLWkb
Dim oXLWks
Dim oXLRng
Set oXLApp = createobject("Excel.Application"
Set oXLWkb = oXLApp.Workbooks.Add
Set oXLWks = oXLWkb.Worksheets.Add
oxlwks.Cells(1, 1).Value = "Some String"
'Select first row of sheet before opening
oXLWks.Cells(1, 1).Select
'Show the worksheet
oXLApp.Visible = True
'Release the objects
Set oXLApp = Nothing
Set oXLWkb = Nothing
Set oXLWks = Nothing
Does anyone know what will then bring up excel and display this sheet to user?
Dim oXLApp
Dim oXLWkb
Dim oXLWks
Dim oXLRng
Set oXLApp = createobject("Excel.Application"
Set oXLWkb = oXLApp.Workbooks.Add
Set oXLWks = oXLWkb.Worksheets.Add
oxlwks.Cells(1, 1).Value = "Some String"
'Select first row of sheet before opening
oXLWks.Cells(1, 1).Select
'Show the worksheet
oXLApp.Visible = True
'Release the objects
Set oXLApp = Nothing
Set oXLWkb = Nothing
Set oXLWks = Nothing