1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- <?xml version="1.0" encoding="utf-8"?>
- <FDL version="1.5">
- <TypeDefinition url="..\..\..\default_typedef.xml"/>
- <Form id="SMMMR08500" classname="SMMMR08500" inheritanceid="" position="absolute 0 0 560 809" titletext="제증명 미리보기(환자용)" onload="SMMMR08500_onload" oninit="SMMMR08500_oninit" onclose="SMMMR08500_onclose">
- <Layouts>
- <Layout>
- <Div id="div_main" taborder="0" position2="absolute l:0% r:0% t:0% b:4.5%" positiontype="position2">
- <Layouts>
- <Layout>
- <ActiveX id="ax_report" useautobitmapcache="1" taborder="0" position2="absolute l:0.13% r:0.27% t:0.11% b:0%" positiontype="position2" progid="{FC035099-833E-4AB1-BF48-37D08F5E553C}" windowed="true"/>
- </Layout>
- </Layouts>
- </Div>
- <Button id="Button01" taborder="4" text="다 음 ▶" position2="absolute l:40.27% r:20.54% t:95.73% b:0.32%" positiontype="position2" style="font:Arial,14,bold;" onclick="Button01_onclick"/>
- <Button id="Button00" taborder="5" text="◀ 이 전" position2="absolute l:0.54% r:60.27% t:95.73% b:0.32%" positiontype="position2" style="font:Arial,14,bold;" onclick="Button00_onclick"/>
- <Button id="Button02" taborder="6" text="닫 기" position2="absolute l:80% r:0.27% t:95.73% b:0.43%" positiontype="position2" style="font:Arial,14,bold;" onclick="Button02_onclick"/>
- </Layout>
- </Layouts>
- <Script type="xscript4.0"><![CDATA[/***************************************************************************************
- * System Name :
- * Job Name :
- * Creator :
- * Make Date : 2019-12-18
- * Description : 환자용 모니터(아큐모니터)에 띄워주는 미리보기 화면
- *---------------------------------------------------------------------------------------
- * Modify Date Modifier Modify Description
- *---------------------------------------------------------------------------------------
- *
- *
- *---------------------------------------------------------------------------------------
- ****************************************************************************************/
- include "com_commonxp::comm_main.xjs";
- function SMMMR08500_oninit(obj:Form, e:InitEventInfo)
- {
- frmf_initForm(obj);
- }
- function SMMMR08500_onload(obj:Form, e:LoadEventInfo)
- {
- if(!frmf_checkOpener()) return;
-
- obj.parent.openstatus = "maximize";
-
- var rexid = opener.frmf_getParameter("SMMMR08500_param_rexid");
- var objParam = opener.frmf_getParameter("SMMMR08500_param_objParam");
- var option = "open=1;save=1;print.zoomlvl=PageWidth;toolbar=0;statusbar=0;pagemargin=0;directprint=0;printdialog=0;print=0;stop=0;excel=0;zoomin=0;zoomout=0;moveprev=0;movenext=0;combo=0;movefirst=0;movelast=0;help=0;async=1";
- div_main.ax_report.Zoom("pagewidth"); // 화면 너비에 맞춤
-
- rptf_exeReportPreview30([rexid],[objParam], option, "", "div_main");
- }
- function Button00_onclick(obj:Button, e:ClickEventInfo)
- {
- div_main.ax_report.MovePrev();
- }
- function Button01_onclick(obj:Button, e:ClickEventInfo)
- {
- div_main.ax_report.MoveNext();
- }
- function Button02_onclick(obj:Button, e:ClickEventInfo)
- {
- opener.div_prompt.visible = false;
- this.close();
- }
- function SMMMR08500_onclose(obj:Form, e:CloseEventInfo)
- {
- opener.div_prompt.visible = false;
- }
- // function SMMMR08500_onkeydown(obj:Form, e:KeyEventInfo)
- // {
- // if(e.keycode == 27){
- // this.close();
- // }
- // }
- // function div_main_onkeydown(obj:Div, e:KeyEventInfo)
- // {
- // if(e.keycode == 27){
- // this.close();
- // }
- // }
- ]]></Script>
- </Form>
- </FDL>
|