Click here to Skip to main content
15,886,110 members
Articles / Desktop Programming / ATL

Create a Universal Document Template which supports Dynamic Frame Window Layout

Rate me:
Please Sign up or sign in to vote.
3.00/5 (8 votes)
14 Dec 20024 min read 49.3K   668   24  
Introduce a programming technology to design a very complex, rich document type.
<HTML>
<HEAD>
<META name=VI60_defaultClientScript content=VBScript>
<TITLE></TITLE>
<style>
INPUT
{
    BORDER-RIGHT: #08246b 1px solid;
    BORDER-TOP: #08246b 1px solid;
    FONT-SIZE: 12px;
    BORDER-LEFT: #08246b 1px solid;
    BORDER-BOTTOM: #08246b 1px solid;
    HEIGHT: 18px
}
.none{
}
.tabsel{
		BORDER-LEFT: silver 1px solid; 
		BORDER-RIGHT: black 1px solid; 
		BORDER-TOP: silver 1px solid;
		CURSOR: default;
		TEXT-ALIGN: center;
		BACKGROUND-COLOR: lightcyan;
		FONT-SIZE: 12px;
		height:22px
		}
.tabnosel{
		BORDER-BOTTOM: silver 1px solid; 
		BORDER-LEFT: silver 1px solid; 
		BORDER-RIGHT: black 1px solid; 
		BORDER-TOP: silver 1px solid;
		CURSOR: default;
		TEXT-ALIGN: center;
		BACKGROUND-COLOR: lightsteelblue;
		FONT-SIZE: 12px;
		height:22px
		}
.ttcap{
		BORDER-BOTTOM: silver 1px solid; 
		BORDER-LEFT: silver 1px solid; 
		BORDER-RIGHT: black 1px solid; 
		BORDER-TOP: silver 1px solid;
		CURSOR: default;
		TEXT-ALIGN: left;
		BACKGROUND-COLOR: lightsteelblue;
		FONT-SIZE: 12px;
		height:20px
		}
.tooltip{
		BORDER-BOTTOM: 1px solid; 
		BORDER-LEFT: 1px solid; 
		BORDER-RIGHT: 1px solid; 
		BORDER-TOP: 1px solid;
		padding-left:2px;
		padding-right:2px;
		CURSOR: default;
		TEXT-ALIGN: left;
		BACKGROUND-COLOR: #ffffe1;
		FONT-SIZE: 12px;
		height:1;
		LINE-HEIGHT: 1.4;
		}
.tabpage{
		BORDER-LEFT: silver 1px solid; 
		BORDER-RIGHT: black 1px solid; 
		BORDER-BOTTOM: black 1px solid;
		BORDER-TOP: silver 1px solid;
		BACKGROUND-COLOR: lightcyan;
		FONT-SIZE: 12px;
		TEXT-ALIGN: center;
		width:100%
		}
.intabpage{
		FONT-SIZE: 12px;
		width:100%
		}
.txtdlg{
		BORDER-LEFT: silver 1px solid; 
		BORDER-RIGHT: black 1px solid; 
		BORDER-BOTTOM: black 1px solid;
		BORDER-TOP: silver 1px solid;
		BACKGROUND-COLOR: lightcyan;
		FONT-SIZE: 12px;
		width:600
		}

</style>
</HEAD>
<BODY background="CIRCUIT.JPG">
<table id=tb0 width=100% class=tabpage>
  <TR>
    <TD class=tabnosel >
      Create Controlbar
  <TR>
    <TD>
      ControlBarTitle: <INPUT name=strDockBarCaption size="17">
  <TR>
    <TD>
      <INPUT name=CreateDockingBar onclick=javascript:window.external.CreateDockBar(strDockBarCaption.value) type=button value=CreateDockingControlBar>
      </TD></TR>
</table>
</BODY>
</HTML>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
China China
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions