N
Nick P
When I try and use ExportPicutre to export the chart to the desktop I get
the error "The operation could not be completed due to error 8003007b".
ExportPicture works fine wen I export to a specific location on another
server.
Here is the code that is broken...
Sub btnSave_onClick()
Dim retVal
Dim winOpt
Dim tempName
retVal = InputBox("Enter a name for the chart picture file:", "DMS
Dashboard", Left(tdTitle.InnerText, 30) & ".gif")
If Trim(retVal) <> "" Then
If InStr(Trim(retVal), ".gif") <= 0 Then
retVal = retVal & ".gif"
'End If
cspace.ExportPicture retVal, "gif", cspace.style.pixelwidth,
cspace.style.pixelheight 'save gif image of chart to desktop
End If
End Sub
the error "The operation could not be completed due to error 8003007b".
ExportPicture works fine wen I export to a specific location on another
server.
Here is the code that is broken...
Sub btnSave_onClick()
Dim retVal
Dim winOpt
Dim tempName
retVal = InputBox("Enter a name for the chart picture file:", "DMS
Dashboard", Left(tdTitle.InnerText, 30) & ".gif")
If Trim(retVal) <> "" Then
If InStr(Trim(retVal), ".gif") <= 0 Then
retVal = retVal & ".gif"
'End If
cspace.ExportPicture retVal, "gif", cspace.style.pixelwidth,
cspace.style.pixelheight 'save gif image of chart to desktop
End If
End Sub