Initial commit
This commit is contained in:
22
crystalreportviewers13/prompting/html/calendar.html
Normal file
22
crystalreportviewers13/prompting/html/calendar.html
Normal file
@@ -0,0 +1,22 @@
|
||||
<!-- saved from url=(0017)http://localhost/ -->
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<META http-equiv=content-type content="text/html; charset=utf-8">
|
||||
<TITLE>Business Objects</TITLE>
|
||||
</HEAD>
|
||||
|
||||
<SCRIPT language="JavaScript">
|
||||
|
||||
//newWin = window;
|
||||
// USE THE JAVASCRIPT-GENERATED DOCUMENTS (calDocTop, calDocBottom) IN THE FRAMESET
|
||||
calDocFrameset =
|
||||
"<FRAMESET ROWS='70,*' FRAMEBORDER='0'>\n" +
|
||||
" <FRAME NAME='topCalFrame' SRC='calendartop.html' SCROLLING='no'>\n" +
|
||||
" <FRAME NAME='bottomCalFrame' SRC='calendarbottom.html' SCROLLING='no'>\n" +
|
||||
"</FRAMESET>\n";
|
||||
|
||||
document.write(calDocFrameset);
|
||||
|
||||
</SCRIPT>
|
||||
|
||||
</HTML>
|
||||
32
crystalreportviewers13/prompting/html/calendarbottom.html
Normal file
32
crystalreportviewers13/prompting/html/calendarbottom.html
Normal file
@@ -0,0 +1,32 @@
|
||||
<!-- saved from url=(0017)http://localhost/ -->
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv=content-type content="text/html; charset=utf-8">
|
||||
</head>
|
||||
<body>
|
||||
<script language="javascript">
|
||||
function setHtml()
|
||||
{
|
||||
try
|
||||
{
|
||||
document.write(parent.parent.opener.calDocBottom);
|
||||
}
|
||||
catch (e)
|
||||
{
|
||||
if (e.number == -2147418111)
|
||||
{
|
||||
// this is a 'Call was rejected by callee' exception
|
||||
// which indicates that OLE Automation timed-out when
|
||||
// waiting for a response from the process that spawned
|
||||
// this window. The process is probably busy so delay
|
||||
// delay a bit, then try again.
|
||||
|
||||
setTimeout("setHtml();", 50);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
setHtml();
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
32
crystalreportviewers13/prompting/html/calendartop.html
Normal file
32
crystalreportviewers13/prompting/html/calendartop.html
Normal file
@@ -0,0 +1,32 @@
|
||||
<!-- saved from url=(0017)http://localhost/ -->
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv=content-type content="text/html; charset=utf-8">
|
||||
</head>
|
||||
<body>
|
||||
<script language="javascript">
|
||||
function setHtml()
|
||||
{
|
||||
try
|
||||
{
|
||||
document.write(parent.parent.opener.calDocTop);
|
||||
}
|
||||
catch (e)
|
||||
{
|
||||
if (e.number == -2147418111)
|
||||
{
|
||||
// this is a 'Call was rejected by callee' exception
|
||||
// which indicates that OLE Automation timed-out when
|
||||
// waiting for a response from the process that spawned
|
||||
// this window. The process is probably busy so delay
|
||||
// delay a bit, then try again.
|
||||
|
||||
setTimeout("setHtml();", 50);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
setHtml();
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user