Data Access Page and IE

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

We've create a DAP via Access that uses the Expand component to allow
drill-down functionality. Works fine within Access. However, when it's placed
onto our corporate intranet, the image that is displayed for the Expand
function is missing. Instead a broken image is displayed. However, the
functionality still works if the broken image is clicked. The Expand
component is an OWC and the raw HTML for the src is:
<IMG class=MsoExpandCollapse id=ProgramSummary-VehicleCenterExpand
style="Z-INDEX: 103; LEFT: 0.125in; VISIBILITY: visible; POSITION: absolute;
TOP: 0.083in" tabIndex=1 src="owc://GIF/#11250">
The data access page is linked by a link on a standard html page.

Ironically, if you refresh the DAP page, the Expand icons show just fine.
Any thoughts on how to address this?

Thanks,
Mark
 
Hi Mark,

My guess is that the owc:// protocol handler has something to do with it.
The src for the image src=owc://GIF/#11250 is'nt being resolved on your web
server... either the owc:// protocol is not registered on your server or the
gif image #11250 does not exist in your version of OWC... Try replacing the
src value to an another image file that can be found on your server...
Regards.
 
Back
Top