Home
dbPix
Download
Order
Testimonials
Support
Tutorials
Samples
KnowledgeBase
Links
Revision History
Documentation
Search
Contact
Site Map

Graph: dbPix image storage vs OLE Embedding and Linking in Microsoft Access


DBPix Sample Source Code: common.inc
Back to sample
<%
Function StartImageBorder()
%>
<table border="0" cellspacing="0" cellpadding="0">
  <tr> 
    <td background="images/a_top_left.gif"><img src="images/a_top_left.gif" width="11" height="10"></td>
    <td background="images/a_top.gif"></td>
    <td><img src="images/a_top_right.gif" width="17" height="10"></td>
  </tr>
  <tr> 
    <td background="images/a_left.gif"></td>
    <td valign="middle"><%
End Function

Function FinishImageBorder()
%></td>
    <td valign="top" background="images/a_right.gif"></td>
  </tr>
  <tr> 
    <td><img src="images/a_btm_left.gif" width="11" height="18"></td>
    <td background="images/a_btm.gif"></td>
    <td><img src="images/a_btm_right.gif" width="17" height="18"></td>
  </tr>
</table>
<%
End Function
%>

Back to sample