From-children

I tried to use from-children in my xsl script for a transformation. I got an error back that from-children function not found.
ORA-20100: Error occurred while processing: XSL-1015: Function 'from-children'
not found.
null

You're not using XSLT 1.0
from-children is part of an XSLT Draft syntax that never made the final, XSLT 1.0 recommendation.
See http://www.w3.org/tr/xslt for more info.

Similar Messages

  • How to get minimal value from children with skip missing values?

    Hi,I would like to get minimum value from children, but I would like to skip missing.Minimal value from children works fine (see following formula):@MIN(@CHILDREN("member_name"));Minimal value with skip missing (see following formula) returns error:@MINSRANGE(SKIPMISSING,@CHILDREN("member_name"));Error message: "This function must be a macro".Question: How can I write a formule to get minimal value from children without missing values.What is a macro and how can I write it? If possible I would like to write formule instread of macro!Thanks,Grofaty

    Hi,I have found out solution:@MINS(SKIPMISSING,@CHILDREN "member_name")); No more help is needed.Thanks,Grofaty

  • Flash CS4 - how to create event flow from children to parents?

    In my opinion natural event flow direction is from children
    to its parants.
    E.g. when in dialog box buttons are pressed it is natural to
    inform only
    this dialog box about these actions. When dialog box can't
    handle particular
    event then passes it to its parent and so on .
    Unfortunately this direction is not well supported by Flash.
    To achieve
    support for this event direction it is necessary to call
    parent.dispatchEvent() with bubbling option off. This
    solution is
    inconvenient because sometimes I can't predict what event
    types will be
    triggered inside dialog components. Most likely there is no
    function to
    catch all events which have no defined handlers in dialog in
    order to be
    possible to pass them one level higher.
    Have you got any experience with building communication model
    between
    objects in Flash applications?
    Regards,
    Marek

    XML shema is basically an XML file. So u need to know how to create an XML,
    provided u know how the shema file should be.
    Creating an XML :
    http://forum.java.sun.com/thread.jspa?threadID=5181031&messageID=9705786#9705786

  • How to secure program settings from children?

    How do I secure program settings from children so they don't change them.

    Check Settings > General > Restrictions > Apps
    Hopefully that will have what you need.

  • Insert records from a single table to two related tables

    DB - 10G
    OS - XP
    We have many thousands of comma delimited records that we want to insert into a normalised table structure.
    I have created a test dataset that can be found at the end of this post.
    I have csv records that look like this;
    donald, huey
    donald, dewey
    donald, louie
    And I want the data to be inserted into two separate table like this;
    table named PARENTS
    pk parent_name
    1  donald
    Table named CHILDRENS
    pk fk child_name
    1  1 huey
    1  2 dewey
    1  3 louie
    I constructed an insert statement that looks like this;
    INSERT ALL
      INTO parents (parent_id, parent_name) VALUES (parents_seq.nextval, parent_name)
      INTO children (children_id, parent_id, child_name) VALUES(children_seq.nextval, parents_seq.nextval, child_name )
    SELECT parent_name, child_name
      FROM sources;
    And this resulted in the following;
    Table named PARENTS
    pk child_name
    1  DONALD
    2  DONALD
    3  DONALD
    Table named PARENTS
    pk fk child_name
    1  1  HUEY
    2  2  DEWEY
    3  3  LOUIE
    Would anyone have any ideas on how I could accomplish this task?
    This is some example data;
    [code]
    DROP SEQUENCE parents_seq;
    DROP SEQUENCE sources_seq;
    DROP SEQUENCE children_seq;
    DROP TABLE sources;
    DROP TABLE children;
    DROP TABLE parents;
    CREATE SEQUENCE PARENTS_SEQ MINVALUE 1 MAXVALUE 1000000000000000000000000000 INCREMENT BY 1 START WITH 1 CACHE 20 NOORDER NOCYCLE;
    CREATE TABLE PARENTS
    ( PARENT_ID      NUMBER(8) NOT NULL
    , PARENT_NAME    VARCHAR2 (50 CHAR) NOT NULL
    , CONSTRAINT     PARENTS_PK PRIMARY KEY (PARENT_ID)
    create or replace
    TRIGGER PARENTS_BI
    BEFORE
      INSERT OR UPDATE ON PARENTS
      FOR EACH ROW BEGIN
      IF INSERTING THEN
        IF :NEW.PARENT_ID IS NULL THEN
          SELECT PARENTS_SEQ.nextval INTO :NEW.PARENT_ID FROM dual;
        END IF;
      END IF;
    END;
    CREATE SEQUENCE SOURCES_SEQ MINVALUE 1 MAXVALUE 1000000000000000000000000000 INCREMENT BY 1 START WITH 1 CACHE 20 NOORDER NOCYCLE;
    CREATE TABLE SOURCES
    ( SOURCE_ID      NUMBER(8) NOT NULL
    , PARENT_NAME    VARCHAR2 (50 CHAR) NOT NULL
    , CHILD_NAME    VARCHAR2 (50 CHAR) NOT NULL
    , CONSTRAINT     SOURCES_PK PRIMARY KEY (SOURCE_ID)
    create or replace
    TRIGGER SOURCES_BI
    BEFORE
      INSERT OR UPDATE ON SOURCES
      FOR EACH ROW BEGIN
      IF INSERTING THEN
        IF :NEW.SOURCE_ID IS NULL THEN
          SELECT SOURCES_SEQ.nextval INTO :NEW.SOURCE_ID FROM dual;
        END IF;
      END IF;
    END;
    INSERT INTO SOURCES (PARENT_NAME, CHILD_NAME) VALUES ('DONALD', 'HUEY');
    INSERT INTO SOURCES (PARENT_NAME, CHILD_NAME) VALUES ('DONALD', 'DEWEY');
    INSERT INTO SOURCES (PARENT_NAME, CHILD_NAME) VALUES ('DONALD', 'LOUIE');
    Commit;
    CREATE SEQUENCE CHILDREN_SEQ MINVALUE 1 MAXVALUE 1000000000000000000000000000 INCREMENT BY 1 START WITH 1 CACHE 20 NOORDER NOCYCLE;
    PROMPT *** CREATE TABLE ***
    CREATE TABLE CHILDREN
    ( CHILDREN_ID    NUMBER NOT NULL
    , PARENT_ID      NUMBER NOT NULL
    , CHILD_NAME     VARCHAR2 (50 CHAR) NOT NULL
    , CONSTRAINT     CHILDREN_PK PRIMARY KEY (CHILDREN_ID)
    create or replace
    TRIGGER CHILDREN_BI
    BEFORE
      INSERT OR UPDATE ON CHILDREN
      FOR EACH ROW BEGIN
      IF INSERTING THEN
        IF :NEW.CHILDREN_ID IS NULL THEN
          SELECT CHILDREN_SEQ.nextval INTO :NEW.CHILDREN_ID FROM dual;
        END IF;
      END IF;
    END;
    [code]

    Looks like this is one way of achieving it:
    insert into parents (parent_name) select distinct parent_name from sources;
    select *
      from parents;
    PARENT_ID              PARENT_NAME                                       
    1                      DONALD
    insert into children (parent_id, child_name)
    select p.parent_id, s.child_name
      from sources s
      join parents p
        on (s.parent_name = p.parent_name);
    select *
      from children;
    CHILDREN_ID            PARENT_ID              CHILD_NAME                                        
    1                      1                      HUEY                                              
    2                      1                      DEWEY                                             
    3                      1                      LOUIE

  • One-to-many relationship - remove item from collection problem

    The ArrayCollection keeps folders tree - subtree of folder is kept in children property and is also ArrayCollection. This collection is fed by 'folders' custom assembler defined like this:
    Assembler works with adding and deleting top level objects of collection.
    Also, when I add new object to children property LCDS issues createItem for new object and then updateItem for children property of parent so everything is fine - new object is persisted and relationship is correct.
    When I remove item from children collection ONLY updateItem on assembler is issued, so object is not deleted from repository. Why this managed reletionship works for adding new object to children collection but doesnt work for deleting?

    Hi;
    A simple way may be create a view on referenced tables:
    Connected to Oracle Database 10g Express Edition Release 10.2.0.1.0
    Connected as hr
    SQL>
    SQL> drop table resources;
    Table dropped
    SQL> create table resources(id number, name varchar2(12));
    Table created
    SQL> insert into resources values(1,'Doc....');
    1 row inserted
    SQL> insert into resources values(2,'Img....');
    1 row inserted
    SQL> drop table documents;
    Table dropped
    SQL> create table documents(id number, resource_id number,type varchar2(12));
    Table created
    SQL> insert into documents values(1,1,'txt');
    1 row inserted
    SQL> drop table images;
    Table dropped
    SQL> create table images(id number, resource_id number,path varchar2(24));
    Table created
    SQL> insert into images values(1,2,'/data01/images/img01.jpg');
    1 row inserted
    SQL> create or replace view vw_resource_ref as
      2    select id, resource_id, type, null as path from documents
      3      union
      4     select id, resource_id, null as type, path from images;
    View created
    SQL> select * from resources r inner join vw_resource_ref rv on r.id = rv.resource_id;
            ID NAME                 ID RESOURCE_ID TYPE         PATH
             1 Doc....               1           1 txt         
             2 Img....               1           2              /data01/images/img01.jpg
    SQL> Regards....

  • HT201304 Time Limit for Children

    How can I set any time limit on my children's iPads?
    To control when and how long time they may use their iPad.
    Can it really be true that it's not possible on iOS?!!! :(

    Thank you. Yes parents are driver and responsible here.
    I found a tool, an application, which could be helpful: parent kit.
    It has some bugs, and take too much control of settings and rights, but a good start point and reference.
    One of the biggest problem with this app is that when one disable applications in a certain time, it also disable iBook. Another one is that by changing the time setting, kids can bypass all the restrictions.
    I'm sure Apple could make it easily possible to choose:
    1- a certain number of hours
    2- a certain period of time
    3- applications to be restricted in the selected time
    Then kids could sleep without temptation of games at night, and parents without worries of psychopaths on chat forums.
    Taking iPads from children is not the best solution. And we are not always around to see what they are doing.

  • Trouble changing  background color. Using Dreamweaver CS4

    I can't get to change the back ground color [The greenish grey color] , within a table,  of a web page... Please see http://www.urefillit.com/index2.html  Can use some help here... Also I notice that the foliage background is slow in loading... Any suggestions as to what is causing the loading delay?
    Thanks in advance!!!!!
    Using CS4.........The Code is as follows:
    <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
    <head>
    <meta name="msvalidate.01" content="F33B6715B987C15F0176AAFDA87BE459" />
    <meta name="generator" content="HTML Tidy for Linux (vers 25 March 2009), see www.w3.org" />
    <title>Urefillit manufactures and markets Octenol, Asian Tiger lure, and Kaboom replacement type products</title>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta name="Description" content="We are focused on providing high-quality products and a commitment to customer satisfaction - We will do everything we can to meet your expectations for the best priced and highest quality mosquito control and Kaboom replacement type products available on the market today" />
    <meta name="Keywords" content="Octenol, Lure, Asian Tiger mosquito lure, Kaboom refills, mosquito magnet mosquito killing machine" />
    <meta name="Robots" content="index, follow" />
    <style type="text/css">
    /*<![CDATA[*/
    body {
            background-image: url(images/SambucusBlackLaceFoliage.jpg);
            background-color: #FFCC66;
    body.c7 {background-attachment:fixed}
    div.c6 {text-align: center}
    p.c5 {font-family: Arial; font-size: 70%; text-align: center}
    span.c4 {font-family: Arial; font-size: 70%}
    span.c3 {font-family: Courier}
    p.c2 {text-align: center}
    span.c1 {font-family: Courier; font-size: 120%}
    /*]]>*/
    .c7 table tr .c11 {
            background-color: #F60;
            font-size: 18px;
    tr .c11 table tr td p {
            font-family: "Times New Roman", Times, serif;
            font-size: 16pt;
    .c7 table tr .c11 table tr td p {
            font-family: "Times New Roman", Times, serif;
            font-size: x-large;
    .c7 table tr .c11 table tr td p {
            font-family: "Times New Roman", Times, serif;
            font-size: 16pt;
    .c7 table tr .c11 #table2 tr th {
            background-color: #0F6;
    /*]]>*/
    </style>
    <script src="file:///C|/Scripts/swfobject_modified.js" type="text/javascript">
    </script>
    <style type="text/css">
    /*<![CDATA[*/
    table.c16 {background-color: #FFD9B3}
    p.c15 {text-autospace:none;}
    th.c14 {background-color: #00FF99}
    td.c13 {background-color: #00FF99}
    th.c12 {background-color: #FF6666}
    h2.c11 {font-size: 120%}
    span.c10 {font-size: 150%}
    span.c9 {text-decoration: underline}
    div.c8 {font-size: 70%; text-align: right}
    td.c7 {background-color: #003399}
    p.c6 {text-decoration: underline}
    table.c5 {background-color: #FFCC66}
    td.c4 {background-color: #FFFFFF}
    div.c3 {text-align: center}
    table.c2 {
            background-color: #0F6;
            font-size: 18px;
    th.c1 {background-color: #FFFFFF}
    .c7 table tr th .c7 {
            color: #008040;
    .c7 table tr th .c7 strong {
            color: #000;
    .c7 table tr th .c7 {
            color: #000;
    .c7 table tr th .c1 strong {
            color: #008000;
    /*]]>*/
    </style>
    <style type="text/css">
    /*<![CDATA[*/
    body {
            background-color: #FFCC33;
    th.c1 {background-color: #FFCC66}
    /*]]>*/
    th.c11 {background-color: #FFFFFF}
    th.c11 {
            background-color: #F93;
            position: relative;
            left: auto;
            top: auto;
            right: auto;
            bottom: auto;
            visibility: visible;
            width: auto;
    .c7 table tr .c11 #table2 tr th .c2 a .c3 strong {
            color: #00F;
    .c7 table tr .c11 #table2 tr td a {
            color: #00F;
    .c7 table tr .c11 #table2 tr td a {
            color: #00F;
    .c7 table tr .c11 #table2 tr td p a {
            color: #00F;
    .BLUE { color: #00F;
    .BLUE { color: #00F;
    .blue { color: #00F;
    .blue { color: #00F;
    p.c1 {text-align: center}
    p.c13 {font-size: 80%; text-align: center}
    p.c71 {margin-right:0in;
    margin-left:0in;
    font-size:9.5pt;
    font-family:"Comic Sans MS";
    color:#000040;
    span.c101 {font-size: 80%}
    span.c12 {font-family: Courier New, Courier, monospace}
    span.c6 {font-family: Arial}
    </style>
    <style type="text/css">
    /*<![CDATA[*/
    img.c16 {border:0;width:88px;height:31px}
    span.c15 {font-size: 120%}
    div.c14 {color: #FFFFFF; font-size: 150%; text-align: center}
    span.c13 {font-size:18.0pt; color:#B90D09;}
    strong.c12 {text-decoration: underline}
    span.c11 {font-family:'Comic Sans MS'; color:red;}
    em.c10 {text-decoration: underline}
    span.c9 {color:red;}
    table.c8 {background-color: #006600}
    td.c7 {background-color: #006600}
    span.c6 {font-size: 150%; text-decoration: underline}
    p.c5 {text-decoration: underline}
    p.c4 {text-align: center; text-decoration: underline}
    p.c3 {text-align: center}
    span.c2 {text-decoration: underline}
    div.c1 {text-align: center}
    /*]]>*/
    .c7 table tr .c11 #table2 tr td p {
            color: #00F;
    .eight {
            color: #F00;
    </style>
    <style type="text/css">
    /*<![CDATA[*/
    <!--
    p.MsoNormal {
    margin-top:0in;
    margin-right:0in;
    margin-bottom:10.0pt;
    margin-left:0in;
    line-height:115%;
    font-size:11.0pt;
    font-family:"Calibri","sans-serif";
    .c7 table tr .c11 .c5 strong u span {
            color: #008080;
    .c7 table tr .c11 p u em {
            color: #00F;
    .c7 table tr .c11 p em u {
            color: #00F;
    .c7 table tr .c11 table tr td .c7.c6 .c10 {
            font-family: "Courier New", Courier, monospace;
    .c7 table tr .c11 table tr td .MsoNormal strong u span {
            color: #00F;
    .c7 table tr .c11 table tr td .MsoNormal strong u span {
            font-family: "Times New Roman", Times, serif;
    .c7 table tr .c11 table tr td p strong u {
            font-family: "Times New Roman", Times, serif;
    .c7 table tr .c11 table tr td p strong u {
            font-family: "Times New Roman", Times, serif;
    .c7 table tr .c11 table tr td p strong u {
            font-size: 16px;
    .c7 table tr .c11 table tr td p {
            font-size: 10px;
    .c7 table tr .c11 table tr td p {
            font-size: 12px;
    .c7 table tr .c11 table tr td p {
            font-size: 12px;
    .c7 table tr .c11 table tr td p {
            font-size: 12px;
    .c7 table tr .c11 table tr td .MsoNormal strong u span {
            color: #000040;
    .c7 table tr .c11 .c7 tbody tr th a {
            color: #000;
    .c7 table tr .c11 #table2 tr td a {
            color: #000;
    .c7 table tr .c11 #table2 tr th .c2 a {
            color: #000;
            font-size: 18px;
    .c7 table tr .c11 #table2 tr th a {
            color: #000;
            font-size: 18px;
    .c7 table tr .c11 p u strong font {
            color: #B80738;
    .c7 table tr .c11 p u strong {
            color: #B80738;
    .c7 table tr .c11 table tr td p strong u {
            font-size: 24px;
    .c7 table tr .c11 table tr td p {
            font-size: 16pt;
    .c7 table tr .c11 .MsoNormal span {
            font-size: 24px;
    .c7 table tr .c11 .MsoNormal span {
            font-size: 24px;
    .c7 table tr .c11 .MsoNormal span {
            font-size: 24px;
    .c7 table tr .c11 #table2 tr th {
            font-size: 16px;
    .c7 table tr .c11 #table2 tr th p a {
            font-size: 18px;
    .c7 table tr .c11 #table2 tr th p a {
            font-size: 18px;
    .c7 table tr .c11 #table2 tr th p a {
            font-size: 18px;
    .c7 table tr .c11 table tr td .MsoNormal a {
            font-size: 18px;
    .c7 table tr .c11 table tr td .MsoNormal a {
            font-size: 24px;
    .c7 table tr .c11 .MsoNormal span {
            font-size: 24px;
    .c7 table tr .c11 table tr th a {
            font-size: 18pt;
    -->
    /*]]>*/
    </style>
    <style type="text/css">
    /*<![CDATA[*/
    table.c11 {background-color: #0033FF}
    th.c10 {background-color: #8D8D5E}
    span.c9 {font-family:'Times New Roman','serif'; font-size:18pt;}
    p.c8 {line-height: normal; margin-bottom: .0001pt; text-align: center}
    p.c7 {; font-family: 'Times New Roman', 'serif'; font-size: 14pt; text-align: center}
    p.c6 {; font-family: 'Times New Roman', 'serif'; color: #00F; font-size: 18pt; font-style: italic; text-align: center}
    span.c5 {font-style: italic}
    span.c4 {line-height:115%; font-family:'Times New Roman','serif'; font-size:16.0pt;}
    p.c3 {text-align: center}
    strong.c2 {text-decoration: underline}
    th.c1 {background-color: #FFFFFF}
    /*]]>*/
    </style>
    </head>
    <body>
    <![CDATA[*/
    &amp;amp;lt;!--
    #Layer1 {position:absolute;
            width:110px;
            height:34px;
            z-index:1;
            left: 430px;
            top: 1116px;
            visibility: visible;}
    #Layer2 {position:absolute;
            width:170px;
            height:33px;
            z-index:1;
            left: 536px;
            top: 652px;}
    p.c7 {color: #000000; font-family: Arial; font-size: 80%}
    --&amp;amp;gt;
    /*]]>
    */ <script src="file:///C|/Scripts/AC_RunActiveContent.js" type="text/javascript">
    </script>
    <table class="c11" width="1250" border="15" align="center" cellpadding="5">
    <tr>
    <th width="888" height="2254" align="center" valign="top" class="c11 c10" scope="col">
    <p><br />
    <img src="images/webpagepicture.jpg" alt="WEB PAGE HEADER" width="1267" height="212" border="6" align="middle" /><br /></p>
    <table width="1188" border="6" align="center" class="c2" id="table2">
    <tr>
    <th width="143" scope="col">
    <p><a href="OctenolLure.html">Octenol Lure</a></p>
    </th>
    <th width="145" scope="col"><a href="FlowtronTypeLure.html">FlowtronTypeLure</a></th>
    <th width="145" scope="col">
    <p><a href="AsianTiger.html"></a><a href="AsianTiger.html">Asian Tiger Lure</a></p>
    </th>
    <th width="146" scope="col"><a href="Combolure.html">Combo Lure</a><br />
    (Octenol &amp; Lactic Acid)</th>
    <th width="146" scope="col">
    <p><a href="SkeeterVacLure.html">SkeeterVac Lure</a></p>
    </th>
    <th width="145" scope="col">
    <p class="c2"><a href="mosquitomagnettroubleshootingguide.html">Mosquito Magnet</a></p>
    <p class="c2"><a href="mosquitomagnettroubleshootingguide.html">Repair Guide</a></p>
    </th>
    <td width="145" align="center" valign="middle" scope="col"><a href="Kaboom.html">Kaboom</a><a href="/Kaboom.html">Replacement Tablets</a></td>
    <th width="111" height="104" align="center" valign="middle" scope="col"><a href="https://www.paypal.com/us/verified/pal=sales%40urefillit%2ecom" target="_blank"><img src="https://www.paypal.com/en_US/i/icon/verification_seal.gif" alt="Official PayPal Seal" width="98" height="108" border="0" align="top" /></a><br />
    <br /></th>
    </tr>
    </table>
    <br />
    <table width="282" border="20" align="center" cellpadding="0">
    <tr>
    <th class="c1" width="128" scope="col"><img src="images/flying%20mosquito.gif" alt="** PLEASE DESCRIBE THIS IMAGE **" width="97" height="75" /></th>
    <th class="c1" width="104" scope="col"><a href="#" onClick="window.open('https://www.sitelock.com/verify.php?site=www.urefillit.com','SiteLock','width=600,height=6 00,left=160,top=170');"><img src="//shield.sitelock.com/shield/www.urefillit.com" alt="website security" align="absmiddle" title="SiteLock" /></a></th>
    </tr>
    </table>
    <p><!-- start RatePoint Site Seal - Please, do not change -->
    <!-- end RatePoint Site Seal - Please, do not change -->
    <!-- start RatePoint Subscription Tool - Please, do not change -->
    <!-- end RatePoint Subscription Tool - Please, do not change -->
    ======================================================================================</p >
    <table width="1002" border="0" align="center">
    <tr>
    <td width="996">
    <p class="c3"><strong class="c2">All About Urefillit, LLC</strong></p>
    <p class="c3"><span class="c4">Urefillit, LLC prides itself on quality and consistency of its fine products, which are designed, made and manufactured in the USA. From production to quality control to final shipment, our highly trained team ensures the best quality, and reliable service for our customers. We are focused on providing high-quality products along with a commitment to customer satisfaction. We will do everything we can to meet your expectations for the best priced and highest quality mosquito lures, Kaboom replacement tablets, and bromine tablets available on the market today. With a variety of offerings to choose from, we're sure you will be happy with your purchase. Thank you for visiting our website and if you have any comments or questions, please feel free to contact us. We hope to see you again soon!</span><br /></p>
    <p class="c3"><img src="images/made_in_USA.jpg" width="221" height="228" alt="usa" /><br />
    <br /></p>
    <p class="c3">****************************************************************************** *************<br />
    <br /></p>
    <p class="c6">REFUND POLICY: <span class="c5">Our number one goal is your satisfaction. If our product does not perform as advertised you may return then unused item for a refund. A 25% restocking fee may apply. Buyer pays the return shipping costs. Special and international orders items DO NOT qualify for a refund.</span><br />
    <br /></p>
    <p class="c7"><img src="images/ebay-top-rated-seller-tracking.jpg" width="230" height="158" alt="** PLEASE DESCRIBE THIS IMAGE **" /><a href="http://feedback.ebay.com/ws/eBayISAPI.dll?ViewFeedback2&amp;userid=fjp800&amp;ftab=Feedbac kAsSeller"><br />
    Check Out Our E-Bay Feedback</a></p>
    <p class="c7"><br />
    ****************************************************************************************** ********************<br /></p>
    </td>
    </tr>
    </table>
    <table width="1002" border="0" align="center">
    <tr>
    <td width="996">
    <p class="c3"><strong class="c2">Using Octenol to Attract Mosquitoes<br /></strong><br /></p>
    <p class="c3">Octenol is an natural chemical that occurs naturally as a by-product of plants and some animals that eat a lot of vegetable produce. If carbon dioxide is mixed with octenol, it has been found to be an attractant to several mosquito species. There are other insects such as no-see-ums and biting midges that are also attracted to this scent. It has been proven to be a very effective product, especially for no-see-ums.<br />
    <br />
    <img src="images/12137165-cartoon-stop-mosquito.jpg" width="168" height="168" alt="mosquito" /><br />
    <br />
    Octenol is also a pesticide ingredient that is used to attract mosquitoes and biting flies. It does not kill the insects; it only attracts them. It can be used in combination with other products and devices that do kill them once they are successfully attracted to the device. It is important to be aware that non-pest insects are also attracted and destroyed by some of the devices.<br />
    <br />
    If octenol is ingested, there is a possibility for toxicity. It is not, however, harmful in the air to humans, pets, or the environment. It is vitally important that it is kept safely away from children to avoid the possibility of ingesting. Placement of the attractant and device utilized to catch biting insects should be carefully considered. It should be kept safely away from children and pets.<br /></p>
    <p class="c3">To be most effective in mosquito control, the attractant should be placed between the breeding grounds of the mosquito and the area where the people are located. There are range limits that the attractant will reach and this needs to be considered in the placement of the trap as well.<br /></p>
    </td>
    </tr>
    </table>
    <a href="http://www.startlogic.com/join/index.bml?AffID=626972&amp;cid=592'"><br /></a> ==============================================================
    <p><img src="images/americanatural_1875_97577.gif" width="234" height="118" alt="** PLEASE DESCRIBE THIS IMAGE **" /></p>
    <p>Considering buying a mosquito trap? If so, compare the following traps before you make a purchase:</p>
    <a href="http://www.bluerhino.com/BRWEB/Outdoor-Living-Products/Mosquito-Traps.aspx">SkeeterVac</a>
    <table class="c6" border="0" align="center">
    <tbody>
    <tr>
    <td align="center">
    <div class="c3"><a href="http://www.mosquitomagnet.com/">Mosquito Magnet</a></div>
    </td>
    </tr>
    </tbody>
    </table>
    <table class="c6" border="0" align="center">
    <tbody>
    <tr>
    <td>
    <div class="c3"><a href="http://www.megacatch.com/">Mega-Catch</a></div>
    </td>
    </tr>
    </tbody>
    </table>
    <table class="c6" border="0" align="center">
    <tbody>
    <tr>
    <td>
    <div class="c3"><a href="http://koolatrononline.stores.yahoo.net/mosquito-control.html">Koolatron</a></div>
    </td>
    </tr>
    </tbody>
    </table>
    <table class="c6" border="0" align="center">
    <tbody>
    <tr>
    <td width="273">
    <div class="c3"><a href="http://www.mosquitocontroltrap.com/comparisons">Mosquito Trap Comparison Chart</a></div>
    </td>
    </tr>
    </tbody>
    </table>
    <p><br /></p>
    <table width="126" border="20" align="center" cellpadding="0">
    <tr>
    <th class="c1" scope="col"><a href="mailto:[email protected]">E-mail Urefillit</a></th>
    </tr>
    </table>
    <br />
    <p class="c8"> </p>
    <p class="c8"><span class="c9">Urefillit, LLC<br />
    800 Shore Drive East<br />
    Oldsmar, Florida 34677-4402</span></p>
    <p class="c8"> </p>
    <p><a href="http://validator.w3.org/check?uri=referer"><img src="http://www.w3.org/Icons/valid-xhtml10" alt="Valid XHTML 1.0 Transitional" height="31" width="88" /></a><br /></p>
    <p> </p>
    </th>
    </tr>
    </table>
    <script type="text/javascript">
    //<![CDATA[
    <!--
    swfobject.registerObject("FlashID");
    //-->
    //]]>
    </script>
    </body>
    </html>

    Copy & Paste this code into a new, blank document.  SaveAs index3.html.  Feel free to adjust CSS colors and backgrounds as desired.   You'll find plenty of code comments to help you.
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>U Refill It</title>
    <meta name="description" content="Your source for mosquito magnet and mosquito killing machine replacement products: Octenol, Asian Tiger lure and Kaboom">
    <!--help for older IE browsers-->
    <!--[if IE]>
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <![endif]-->
    <!--[if lt IE 9]>
    <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
    <![endif]-->
    <style>
    /**CSS Reset**/
        margin: 0;
        padding: 0;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    img {
        vertical-align: baseline;
        display: block;
        max-width: 100%
    /**layout**/
    body {
        font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
        font-size: 100%;
        /**CSS gradient**/
    /* Old browsers */
        background: rgb(180,221,180);
        /* FF3.6+ */
        background: -moz-linear-gradient(top, rgba(180,221,180,1) 0%, rgba(131,199,131,1) 17%, rgba(82,177,82,1) 33%, rgba(0,138,0,1) 67%, rgba(0,87,0,1) 83%, rgba(0,36,0,1) 100%);
        /* Chrome,Safari4+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(180,221,180,1)), color-stop(17%, rgba(131,199,131,1)), color-stop(33%, rgba(82,177,82,1)), color-stop(67%, rgba(0,138,0,1)), color-stop(83%, rgba(0,87,0,1)), color-stop(100%, rgba(0,36,0,1)));
        /* Chrome10+,Safari5.1+ */
        background: -webkit-linear-gradient(top, rgba(180,221,180,1) 0%, rgba(131,199,131,1) 17%, rgba(82,177,82,1) 33%, rgba(0,138,0,1) 67%, rgba(0,87,0,1) 83%, rgba(0,36,0,1) 100%);
        /* Opera 11.10+ */
        background: -o-linear-gradient(top, rgba(180,221,180,1) 0%, rgba(131,199,131,1) 17%, rgba(82,177,82,1) 33%, rgba(0,138,0,1) 67%, rgba(0,87,0,1) 83%, rgba(0,36,0,1) 100%);
        /* IE10+ */
        background: -ms-linear-gradient(top, rgba(180,221,180,1) 0%, rgba(131,199,131,1) 17%, rgba(82,177,82,1) 33%, rgba(0,138,0,1) 67%, rgba(0,87,0,1) 83%, rgba(0,36,0,1) 100%);
        /* good browsers */
        background: linear-gradient(to bottom, rgba(180,221,180,1) 0%, rgba(131,199,131,1) 17%, rgba(82,177,82,1) 33%, rgba(0,138,0,1) 67%, rgba(0,87,0,1) 83%, rgba(0,36,0,1) 100%);
    /* older IE6-9 */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b4ddb4', endColorstr='#002400', GradientType=0 );
    #wrapper {
        width: 75%;
        margin: 0 auto; /**with width, this is centered**/
        background: #FFC;
        border: 4px groove #F30;
        border-radius: 20px;
    header, footer {
        color: #F30;
        text-align: center;
        font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", serif;
    header img {
        border-radius: 15px 15px 0 0;
        width: 100%
    /**top menu**/
    nav {
        width: 90%;
        margin: 25px auto;
    nav li {
        list-style: none;
        font-weight: bold;
        display: inline;
    /**menu link styles**/
    nav li a {
        display: inline-block;
        font-weight: bold;
        color: green;
        text-decoration: none;
        padding: 1.15em;
        border: 2px outset green;
    /**menu links on mouse over**/
    nav li a:hover, nav li a:active, nav li a:focus { background: gold }
    /**main content**/
    article { padding: 2% }
    figure img {
        margin: 0 auto;
        border: 3px solid #FFF;
        border-radius: 10px;
        box-shadow: 1px 2px 5px #333;
    /**typography**/
    header h1 {
        font-size: 55px;
        text-shadow: 2px 3px 3px #666;
    header h2 {
        font-size: 18px;
        font-style: oblique
    h3 { margin-top: 20px; }
    p {
        margin-bottom: 18px;
        font-size: 18px;
        color: #000;
    figcaption {
        text-align: center;
        font-style: oblique;
        margin-bottom: 18px;
    </style>
    </head>
    <body>
    <div id="wrapper">
    <header>
    <img src="http://www.urefillit.com/images/webpagepicture.jpg" alt="U Refill It banner">
    <!--this is very good for search engines-->
    <h1>U Refill It</h1>
    <h2>Your source for mosquito magnet and mosquito killing machine replacement products: Octenol, Asian Tiger lure and Kaboom.</h2>
    </header>
    <!--top menu-->
    <nav>
    <ul>
    <li><a href="#">Menu1</a></li>
    <li><a href="#">Menu2</a></li>
    <li><a href="#">Menu3</a></li>
    <li><a href="#">Menu4</a></li>
    <li><a href="#">Menu5</a></li>
    <li><a href="#">Menu6</a></li>
    </ul>
    </nav>
    <!--main content-->
    <article>
    <h3>Article Heading 3</h3>
    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.  Mauris vitae libero lacus, vel hendrerit nisi!  Maecenas quis velit nisl, volutpat viverra felis. Vestibulum luctus mauris sed sem dapibus luctus.  Pellentesque aliquet aliquet ligula, et sagittis justo auctor varius. Quisque varius scelerisque nunc eget rhoncus.  Aenean tristique enim ut ante dignissim. </p>
    <figure>
    <!--insert your image here-->
    <img src="http://placehold.it/500x325" alt="figure">
    <figcaption> Figure Caption </figcaption>
    </figure>
    <h3>Heading 3</h3>
    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.  Mauris vitae libero lacus, vel hendrerit nisi!  Maecenas quis velit nisl, volutpat viverra felis. Vestibulum luctus mauris sed sem dapibus luctus.  Pellentesque aliquet aliquet ligula, et sagittis justo auctor varius. Quisque varius scelerisque nunc eget rhoncus.  Aenean tristique enim ut ante dignissim. </p>
    <h3>Heading 3</h3>
    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.  Mauris vitae libero lacus, vel hendrerit nisi!  Maecenas quis velit nisl, volutpat viverra felis. Vestibulum luctus mauris sed sem dapibus luctus.  Pellentesque aliquet aliquet ligula, et sagittis justo auctor varius. Quisque varius scelerisque nunc eget rhoncus.  Aenean tristique enim ut ante dignissim. </p>
    </article>
    <!--begin footer-->
    <footer>
    <small>© 2014 Your Site Name. All Rights Reserved</small> </footer>
    <!--end wrapper--> </div>
    </body>
    </html>
    Nancy O.

  • When I sign in to my bank account this pops up: na3zz.playnow.dollfield.eu and a bunch of numbers. Also it says update now, though I never click on it. Help.

    As soon as I sign in to the bank but before I put in my secure passwords, I look and there is another Mozilla tab saying update 7 drivers, or update now. Above is one of the lines I saw in my browser. This doesn't seem to be happening on any other website and so far my bank account is fine. But this worries me. I tried my partner's computer and the same thing happened. I just did it again and this came up. (I have already updated to the newest firefox by the way.) This message came with the Mozilla logo too but it wouldn't copy over to this letter.
    http://www.lpmxp2.com/393C7C213B2057557D61273D212C7B545FA8850C068E5598E2EDD7F75F9913F870BFCBF4F7F14D2E3903E1A8BA4DE53F?tgu_src_lp_domain=www.allsoftdll.com&ClickID=12824897611400706742&PubID=274944
    Recommended
    You are currently browsing the web with Firefox and it is recommended that you update your video player to the fastest version available.
    Please update to continue.
    OK
    You are currently browsing the web with Firefox and your Video Player might be outdated
    Please update to the latest version for better performance
    LEGAL INFORMATION
    ATTENTION! PLEASE READ THIS AGREEMENT CAREFULLY BEFORE ACCESSING THE SITE AND DOWNLOADING ANY CONTENT. IF YOU USE THE SITE OR DOWNLOAD CONTENT YOU AGREE TO EACH OF THE FOLLOWING TERMS AND CONDITIONS.
    This is a legally binding contract between you and the installer. By downloading, installing, copying, running, or using any content of allsoftdll.com, you are agreeing to be bound by the terms of this Agreement. You are also agreeing to our Privacy Policy. If you do not agree to our terms, you must navigate away from our Sites, you may not download the Content, and you must destroy any copies of the Content in your possession.
    If you are under 18, you must have your parent or guardian's permission before you use our Sites or download Content. In an effort to comply with the Children's Online Privacy Protection Act, we will not knowingly collect personally identifiable information from children under the age of 13.
    This Agreement may be modified by us from time to time. If you breach any term in this Agreement your right to use the Sites and Content will terminate automatically.
    1. The Download Process.
    Your download and software installation is managed by the Installer. The installer(i) downloads the files necessary to install your software; and (ii) scans your computer for specific files and registry settings to ensure software compatibility with your operating system and other software installed on your computer. Once the installer has been initiated, you will be presented with a welcome screen, it allows you to choose to install the software or cancel out of the process. We may show you one or more partner software offers. You are not required to accept a software offer to receive your download. We may also offer to: (i) change your browser's homepage; (ii) change your default search provider; and (iii) install icons to your computer desktop. Software we own and our partner's software may include advertisements within the application.
    2. Delivery of Advertising.
    By accessing the Sites and downloading the Content, you hereby grant us permission to display promotional information, advertisements, and offers for third party products or services (collectively "Advertising"). The Advertising may include, without limitation, content, offers for products or services, data, links, articles, graphic or video messages, text, software, music, sound, graphics or other materials or services. The timing, frequency, placement and extent of the Advertising changes are determined in our sole discretion. You further grant us permission to collect and use certain aggregate information in accord with our Privacy Policy.
    TREATMENT OF PERSONAL INFORMATION
    In compliance with Act15/1999, 13 December, of Protection of Personal Information and development regulation (hereinafter, the Company), holding company of this Web Site,(hereinafter, the Portal) informs you that the information obtained through the Portal will be handled by the Company, as the party in charge of the File, with the goal of facilitating the requested services, attending to queries, carrying out statistical studies that will allow an improvement in service, carrying out typical administrative tasks, sending information that may result of your interest through bulletins and similar publications, as well as developing sales promotion and publicity activities related to the Portal.
    The user expressly authorizes the use of their electronic mail address and other means of electronic communication (e.g., mobile telephone) so that the Company may use said means of communication and for the development of informed purposes. We inform you that the information obtained through the Portal will be housed on the servers of the company OVH, SAS, located in Roubaix (France).
    Upon providing your information, you declare to be familiar with the contents here in and expressly authorize the use of the data for the informed purposes .The user may revoke this consent at any time, without retroactive effects.
    The Company commits to complying with its obligation as regards secrecy of personal information and its duty to treat the information confidentially ,and to take the necessary technical, organizational and security measures to avoid the altering, loss, and unauthorized handling or access of the information, in accordance with the rules established in the Protection of Personal Information Act and the applicable law.
    The Company only obtains and retains the following information about visit our site: The domain name of the of the provider (ISP) and/or the IP address that gives them access to the network.
    The date and time of access to our website. The internet address from which the link that that leads to our web site originated. The type of browser client. The client's operating system. This information is anonymous, not being able to be associated with a specific , identified user. The Portal uses cookies, small information files generated on the user's computer, with the aim of obtaining the following information: The date and time of the most recent visit to our web page. Security control elements to restricted areas.
    The user has the option of blocking cookies by means of selecting the corresponding option on their web browser. The Company assumes no responsibility through if the deactivation of cookies supposes a loss of quality in service of the Portal.
    If you would like to contact us via e-mail, please send a message here
    Download and Install Now
    Accept and Install
    Terms & Conditions
    Privacy Policy
    Contact Us
    Another one appeared too:
    http://hjpzz.playnow.dollfield.eu/?sov=412093510&hid=hllxrtplhvhh&id=XNSX.1282489761.242716.bcd1066d14.5716.753da997a17f9f6fe278b4412637784f%3A%3Apc
    Thanks for any help.

    What you are experiencing is 100% related to Malware.
    Sometimes a problem with Firefox may be a result of malware installed on your computer, that you may not be aware of.
    You can try these free programs to scan for malware, which work with your existing antivirus software:
    * [http://www.microsoft.com/security/scanner/default.aspx Microsoft Safety Scanner]
    * [http://www.malwarebytes.org/products/malwarebytes_free/ MalwareBytes' Anti-Malware]
    * [http://support.kaspersky.com/faq/?qid=208283363 TDSSKiller - AntiRootkit Utility]
    * [http://www.surfright.nl/en/hitmanpro/ Hitman Pro]
    * [http://www.eset.com/us/online-scanner/ ESET Online Scanner]
    [http://windows.microsoft.com/MSE Microsoft Security Essentials] is a good permanent antivirus for Windows 7/Vista/XP if you don't already have one.
    Further information can be found in the [[Troubleshoot Firefox issues caused by malware]] article.
    Did this fix your problems? Please report back to us!

  • Family Sharing and Individual Purchases (Suggestions)

    I have recently updated to iOS 8, as i am sure many others or perhaps millions have done as well. Me and my other half tried the family share option and it works for the most part very well, BUT... We seriously think it is lacking a few options for granularity.
    regardless of who the organizer is the option of who'c Billing information to use for purchases should be selectable and not just limited to the organizer Below are some of our suggestions for Apple....
    Suggestions
    For instance if my wife and I are on the Family Share we should have the following options:
    1) A way for identifying a family share member as parent or child (Child being no older than 21)  this will help establish groups
    2) Family members should be presented with an option to use their own payment method associated with their individual iTunes Account (as default method).
         a)  If wife is Organizer i shouldn't be forced to have my purchases paid for from her account when i have my own payment info for my own iTunes account.
         b)  Any child on the family share who have their own banking information on file for their account should be presented with a choice to use their own payment
              information or request authorization from parents to have them (the parent approving the purchase) pay for purchase. Depending on which parent approves
              the request would determine which parent would be responsible for his/her child's iTunes purchase.
         c) If Child has no method of payment on their iTunes account then any purchase request would automatically be routed to the parents to request purchase
               authorization
    By having a msg such as "Request for purchase authorization sent to parent/guardian" (or something along those lines) it would still allow the parents to be anonymous as to who authorized the purchase for the child. Family members of Divorced Parents (further suggestions)
    For Children of divorced parents this would also allow the flexibility, from their point of view, to still have mom or dad play a role in the purchasing decision.
         d)  Children 21 and younger should also have the ability to be part of, no more than, 2 family share plans while parents can only be assigned to 1 family share plan Example of the two different groups a child may belong to..
              a) Plan 1 - (Home A) Father / Step Mother (assuming both parents have remarried)
              b) Plan 2 - (Home B) Mother / Step Father (assuming both parents have remarried)
    When child is at "Home A" family from Home B can still authorize his purchase in the event the Parents from Home A do not approve it.
    Last but not least - Approval request sent from children to parents have a expiration time of 15 minutes meaning if the request is not acknowledge / approved after 15 minutes a message could be sent to requestor indicating "...request has timed out due to no response..."
    Conclusion
    These are some suggestions that we feel will make Family Share Plan more usefully to parents of children and to accommodate one of many different family situations.

    Carlton,
    Family Sharing works best when there is an adult (the "organizer") who is paying for the purchases of one or more kids.
    What you are describing might work if you always make sure to have a credit balance on your account.  However, the situation would work more smoothly if you each buy your own stuff and use Home Sharing rather than Family Sharing.

  • Type in text on a page, use that text in an animation

    Hi
    I've been reading up and starting to play with Edge Animate CC, but I can't write any of the code myself. (I used to be a programmer so I can "read" it, but I haven't learnt any languages in years.) As well as my video job I am also the Director of a children's theatre company and I have an interesting idea which I hope Edge Animate can do...
    Our show is improvised from children's ideas, they help us write a book. We'd love to have an animation of a book on screen which has the title we've been given by the audience. We don't have time to add the title to an After Effects animation and render it out, but I did wonder if we could make the animation in Edge Animate and play it live in HTML5. Ideally we'd have a text box, our live tech would type the name into this, and then an animated webpage would appear which uses the text they've typed in.
    So how do we do this? Need to store input from a text field, hide the text field after (so our tech can turn on our live screen without showing it), then play an animation which includes the words stored from the input.
    I have no idea if this is possible or where to start! Does anyone know or want to experiment with the basics of it?
    Thanks
    Matt Andrews

    Yes, I believe you could do this. You can store the value of the input text and then load it where you want in the composition.
    Below is how an input field works:
    var message = sym.$("message");
    inputMessage = $('<textarea />').attr({'type':'textarea','rows':'10', 'cols': '25','value':'', 'id':'message'});
    inputMessage .css ('font-size', 14);
    inputMessage .css ('background-color', '#0a81fb');
    inputMessage .css ('box-shadow', '#0a81fb');
    inputMessage .css ('width', 350);
    //inputMessage .css ('height', 200);
    inputMessage .appendTo(message);
    Below is how you get the value:
    var messageInfo = inputMessage.attr("value");
    Then you could put it in another text field somewhere:
    sym.$('anotherText').html(messageInfo);
    Or something similar.

  • Printing problem with Adobe Reader 8.1.1 on Gutsy

    Hello,
    I have installed the new Adobe Reader 8.1.1 as a deb from Adobe site?
    It is fast and works nicely except for printing where there is a problem :
    Acroread always seems to print in portrait - this happens whether I have "Auto rotate and centre" option selected or not.
    Evince has no problems printing the same document.
    Obviously I am not the only one getting this problem :
    http://ubuntuforums.org/showthread.php?t=430222&highlight=acroread
    or
    http://ubuntuforums.org/showthread.php?t=634664
    etc...
    Is it a known bug ? Is there a workaround or a fix ?
    Please help ! This is driving me mad !
    Regards

    Help to rescue the child++
    Very urgently money resources are required, translate who how many can on webmoney, perhaps you will rescue a life to our girl!!!!!
    Eight years old to Sasha Suldina, our daughter. In 2001 doctors have made it the diagnosis: sharp a blood cancer.
    The child has passed chemotherapy in the Moscow regional oncological clinic (Balashikha),
    Now is in remission. In January, 2003 have been found out viruses of hepatitises In and With,
    That very seriously threatens life of Sasha. Now we find additional financial assets for this purpose,
    To have possibility to spend qualitative treatment of hepatitises expensive medicines(these preparations are not included in the list of preferential medicines).
    We ask everyone who is not indifferent to the stranger to misfortune, to bring whenever possible the feasible contribution to business of rescue of the girl.
    Copies of documents are attached to the letter.
    Very much we ask, translate who how many can, probably you will rescue our girl
    This letter not a deceit, we Ask the help, a critical situation.
    Thanks all who helped, helps or wishes to help, the help to our girl now is necessary.
    Then we spent a lot of time with the child on air, walking on wood. After 3 hours of walks Sasha has started to complain of strong weariness and a pain in joints. Have taken temperature. 38,7. The doctor who has suspected a usual sharp respiratorno-virus infection has been immediately caused. Standard antibiotics and warm tea with a raspberry have been appointed. Late at night observed very strong pains in the bottom of a stomach and its pressure (the stomach was «доскообразный»).Fast immediately hospitalised the child in the Central regional hospital of of Balashikha with suspicion on a sharp appendicitis. Emergency operation has been spent, the diagnosis has proved to be true. The peritonitis, an inflammation began. Operation on appendicitis removal has passed successfully. But after operation condition Сашеньки has not improved. The heat (from above 38).В stably kept Every possible analyses of blood, including on rare infectious diseases, have not given results. But viruses of a belly typhus and a salmonella have been found out. Meanwhile a condition of the child promptly worsened. Haemoglobin level was more low 60, the quantity тромбоцитов and лекоцитов has sharply decreased. Donor blood and an intravenous hormone преднизолон was applied. From children's branch of oncology МООД of Balashikha, Svetlana Varfolomeyev has been invited to that moment were зав.отделением which has suspected system disease of blood at the child. Sasha it has been urgently translated in children's oncological branch where the diagnosis «sharp лимфобластный лейкоз» has been exposed, a blood cancer. Pathological бластных cages in a bone brain was more than 96 %.Состояние the child - the hardest. There has been immediately begun antibacterial therapy by antibiotics of a wide spectrum of action, in parallel - massed инфузионная therapy (glucose, физраствор), was applied преднизолон. After a while there has been begun chemotherapy of the sharp period under German report ALL BFM-90.
    Always yours, Irina and Evgenie
    SULDINA SASHA, 16.12.1996 of the river
    It is observed in the Moscow regional oncological clinic (МООД)
    (Acceptance date on the account - June, 2001)
    The clinic address: 143900 Moscow regions, Balashikha, street Karbysheva, 6, children's branch.
    The case record № 6562, an out-patient card - M - 377
    Attending physician МООД: Injushkina Evgenie Vasilevna
    Managing branch MOOD: Varfolomeyev Svetlana Rafaelevna
    The pediatrist on a residence: Меткалова Love Александровна
    The inquiry on physical inability: series МСЭ - 011, № 832324, is given out 31.10.01 Main bureaus
    медико - social examination on the basis of the Certificate № 538.
    (Physical inability is prolonged 13.11.03, the new inquiry: series МСЭ - 2001, № 1090547, is given out 13.11.03 Bureaus
    МСЭ Balashihinsky area of the Moscow area on the basis of the Certificate № 4123)
    (Physical inability is prolonged 09.12.04, the new inquiry: series МСЭ - 2001, № 5992493, is given out 09.12.04 Bureaus
    МСЭ Balashihinsky area of the Moscow area on the basis of the Certificate № 5041)
    The pension certificate: № 921810, it is given out by 20.12.02 Management ПФР of Balashihinsky area.
    Expensive operation is required, send money and rescue the girl
    The scanned copies of documents: http://new.swapfile.ru/files/31402 / % D0%9E%D1%82%D1%81%D0%BA%D0%B0%D0%BD%D0%B8%D1%80%D0%BE%D0%B2%D0%B0%D0%BD%D0%BD%D1%8B%D0%B5 + % D0%B4%D0%BE%D0%BA%D1%83%D0%BC%D0%B5%D0%BD%D1%82%D1%8B.rar
    Photos Of Sasha:
    http://new.swapfile.ru/files/31403 / % D0%A4%D0%BE%D1%82%D0%BE%D0%B3%D1%80%D0%B0%D1%84%D0%B8%D0%B8.rar
    For interested persons to render immediate material aid:
    ELECTRONIC PURSES: Transfer by means of system of payments WEBMONEY TRANSFER:
    PURSES: USD Z338444558172, EUR E227345040422, RUB R195149635709
    WMID: 416818651774
    The user (Suldin E. Ju) is certified.
    We very much hope for your support....

  • Someone please help me Design the database of bill of materials with 1 item can have mutiple parent

    I got this sample from  Uri
    Dimant (MCC, MVP) ,
    The problem is i want 1 item to have multiple parent  but this example don t   let 1  item to have multiple parents. this is not suit for my objective. 
    CREATE TABLE Employees
      empid   int         NOT NULL,
      mgrid   int         NULL,
      empname varchar(25) NOT NULL,
      salary  money       NOT NULL,
      CONSTRAINT PK_Employees PRIMARY KEY(empid),
      CONSTRAINT FK_Employees_mgrid_empid
        FOREIGN KEY(mgrid)
        REFERENCES Employees(empid)
    CREATE INDEX idx_nci_mgrid ON Employees(mgrid)
    SET NOCOUNT ON
    INSERT INTO Employees VALUES(1 , NULL, 'Nancy'   , $10000.00)
    INSERT INTO Employees VALUES(2 , 1   , 'Andrew'  , $5000.00)
    INSERT INTO Employees VALUES(3 , 1   , 'Janet'   , $5000.00)
    INSERT INTO Employees VALUES(4 , 1   , 'Margaret', $5000.00) 
    INSERT INTO Employees VALUES(5 , 2   , 'Steven'  , $2500.00)
    INSERT INTO Employees VALUES(6 , 2   , 'Michael' , $2500.00)
    INSERT INTO Employees VALUES(7 , 3   , 'Robert'  , $2500.00)
    INSERT INTO Employees VALUES(8 , 3   , 'Laura'   , $2500.00)
    INSERT INTO Employees VALUES(9 , 3   , 'Ann'     , $2500.00)
    INSERT INTO Employees VALUES(10, 4   , 'Ina'     , $2500.00)
    INSERT INTO Employees VALUES(11, 7   , 'David'   , $2000.00)
    INSERT INTO Employees VALUES(12, 7   , 'Ron'     , $2000.00)
    INSERT INTO Employees VALUES(13, 7   , 'Dan'     , $2000.00)
    INSERT INTO Employees VALUES(14, 11  , 'James'   , $1500.00)
    WITH EmpCTE(empid, empname, mgrid, lvl)
    AS
      -- Anchor Member (AM)
      SELECT empid, empname, mgrid, 0
      FROM Employees
      WHERE empid = 1
      UNION ALL
      -- Recursive Member (RM)
      SELECT E.empid, E.empname, E.mgrid, M.lvl+1
      FROM Employees AS E
        JOIN EmpCTE AS M
          ON E.mgrid = M.empid
    SELECT * FROM EmpCTE
    My object is
    I want to design the database of bill of materials which contain item and amount.
    So the amount of child will depend on amount of parent in term of ratio. For example
    A(1)               A(2)
    |         ---->     |
    B(2)               B(4)
    My problem is when i try to add the parent and child . Let A is the parent of B , If i try to add A to be the child of C
    I want B to come along with A as well. For example
    A                       C
    |     C  --->        |           For this I have to store the relation of all item in  my list to check that this item have a child or not if yes
    B                            
    A              The child must come along with its parent , What the Er-diagram should be for all of my requirement?
        |
        B
    Base on the example that Uri
    Dimant gave me ,  i have to stroe 1 item wtih multi parents for example if b is a child of a And b  have c as child , When i insert D as a parent of B   , c will automatic come along with B , But this not seem gonna work.
    item   Parent 
     A      NULL
    B         A
    C         B
    B         D
    Am i wrong to go this way  , any idea

    thanks Uri
    Dimant
    I am
    little confuse about how can i write
    hierarchy sql  from this relation  , Thanks
    so far i got 
    WITH EmpCTE(cid, cname, pid, lvl)
    AS
      SELECT      cid , cname ,  children.pid , 0
      FROM            children INNER JOIN
      parents ON children.pid = parents.pid
      where  cid = 1
      UNION ALL
      SELECT      E.cid , E.cname ,  E.pid , M.lvl+1
      FROM       ( select  cid , cname , children.pid FROM  children INNER JOIN
      parents ON children.pid = parents.pid) AS E JOIN EmpCTE AS M
          ON E.pid = M.cid
    SELECT * FROM EmpCTE  

  • Xml viewing problem in ie 5

    I get the following error, when i am trying to view this xml file in IE 5. Attached are both the xml and xsl file.
    The XML page cannot be displayed
    Cannot view XML input using XSL style sheet. Please correct the error and then click the Refresh button, or try again later.
    System error: -2146697195. Error processing resource ''. Line 7, Position 3
    ]>
    -------------xml file------------
    <?xml version="1.0" encoding="utf-8"?>
    <?xml-stylesheet type="text/xsl" href="intro.xsl" ?>
    <!DOCTYPE article PUBLIC "-//Davenport//DTD DocBook V3.0//EN" "" [
    <!--ArborText, Inc., 1988-1997, v.4001-->
    <!ENTITY ldquo '"'>
    <!ENTITY rdquo '"'>
    ]>
    <?Pub Inc?>
    <article><artheader>
    <title>ArborText XSL Demonstration</title>
    <authorgroup>
    <author><firstname>Norman</firstname><surname>Walsh</surname></author>
    </authorgroup>
    </artheader>
    <sect1>
    <title>Setting Up Your System</title>
    <para>In order to view these pages, you must be using Microsoft <ulink url="http://www.microsoft.com/ie/ie40/">
    Internet Explorer 4.0</ulink> with the <ulink url="http://www.microsoft.com/xml/xsl/downloads/xslctrl.htm">
    Microsoft XSL ActiveX Control</ulink>. (Internet Explorer will automatically
    download and install the XSL ActiveX Control when you visit this page.)</para>
    </sect1>
    <sect1>
    <title>Viewing XML Documents using XSL</title>
    <para>This demonstration uses two XML documents and several XSL stylesheets.
    In every case, the exact same, entire XML document is sent to the browser
    along with a stylesheet, it is the stylesheet <emphasis>only</emphasis> that
    controls what information is displayed.</para>
    <para>To proceed with this demonstration, select one of the links on the left.
    Each of these links will display the selected XML document with the selected
    XSL stylesheet:</para>
    <variablelist>
    <varlistentry>
    <term>Abstract</term><listitem><para>Processes the entire XML document, but
    displays only the title, author, and abstract.</para>
    </listitem></varlistentry>
    <varlistentry>
    <term>Table of Contents</term><listitem><para>Processes the entire XML document,
    but displays only the title and a Table of Contents. Note that the entries
    in the ToC are enumerated by the stylesheet.</para>
    </listitem></varlistentry>
    <varlistentry>
    <term>Full Text</term><listitem><para>Processes and displays the entire XML
    document. Note how the copyright statement from meta-information at the
    top of the article XML file is displayed at the bottom of the document.
    </para>
    </listitem></varlistentry>
    <varlistentry>
    <term>Full Text (Big)</term><listitem><para>Processes and displays the entire
    XML document with a larger body font.</para>
    </listitem></varlistentry>
    </variablelist>
    </sect1>
    <sect1>
    <title>Playing with XML Styler</title>
    <para>You can download the files used in this demo to play with XML Styler
    on your system:</para>
    <orderedlist>
    <listitem><para>Download the <ulink url="xsldemo.zip">demo files</ulink>.
    </para>
    </listitem>
    <listitem><para>Unpack them in a directory on your system.</para>
    </listitem>
    <listitem><para>Using Internet Explorer 4.0, load <emphasis>index.html</emphasis>
    from the directory where you unpacked the files.</para>
    </listitem>
    <listitem><para>Start <ulink url="../index.html">XML Styler</ulink>.</para>
    </listitem>
    <listitem><para>Open the <emphasis>abstract.xsl&lt ;/emphasis>, <emphasis>toc.xsl
    </emphasis>, <emphasis>fulltext.xsl</emphasis>, or <emphasis>bigtext.xsl
    </emphasis> stylesheet.</para>
    </listitem>
    <listitem><para>Modify the stylesheet with XML Styler</para>
    </listitem>
    <listitem><para>Save the stylesheet</para>
    </listitem>
    <listitem><para>To see your changes, reload one of the XML documents using
    the stylesheet you just modified.</para>
    </listitem>
    </orderedlist>
    </sect1>
    <sect1>
    <title>C<?Pub Caret1?>reating Your Own</title>
    <para>It's easy to create new stylesheets with <emphasis>XML Styler</emphasis>,
    but it's a little tricky to get Internet Explorer to display your XML documents
    with them. At present, Internet Explorer relies on some HTML &ldquo;glue&rdquo;
    in order to display documents using the XSL ActiveX Control.</para>
    <para>For more information about the &ldquo;glue&rdquo; layer, please read <ulink
    url="http://www.microsoft.com/xml/xsl/downloads/xslctrl.htm">Using the Microsoft
    XSL ActiveX Control in a Web Page</ulink>. For more general information about
    the XSL ActiveX Control, see the <ulink url="http://www.microsoft.com/xml/xsl">
    Microsoft XSL Homepage</ulink>.</para>
    </sect1>
    </article>
    <?Pub *0000004063?>
    ---------------xsl file-------------
    - <xsl>
    - <rule>
    <root />
    - <HTML>
    - <HEAD>
    - <TITLE>
    - <select-elements from="descendants">
    - <element type="article">
    - <element type="artheader">
    <target-element type="title" />
    </element>
    </element>
    </select-elements>
    </TITLE>
    </HEAD>
    - <BODY>
    <children />
    </BODY>
    </HTML>
    </rule>
    - <rule>
    <target-element type="article" />
    <children />
    </rule>
    - <rule>
    <target-element type="artheader" />
    - <select-elements from="children">
    <target-element type="title" />
    </select-elements>
    - <select-elements from="children">
    <target-element type="subtitle" />
    </select-elements>
    </rule>
    - <rule>
    <target-element type="author" />
    by
    <children />
    </rule>
    - <rule>
    - <element type="artheader">
    <target-element type="title" />
    </element>
    - <CENTER>
    <IMG SRC="atilogo.gif" ALIGN="RIGHT" />
    - <H1>
    <children />
    </H1>
    </CENTER>
    <HR />
    </rule>
    - <rule>
    - <element type="artheader">
    <target-element type="subtitle" />
    </element>
    - <H3>
    <children />
    </H3>
    </rule>
    - <rule>
    - <element type="sect1">
    <target-element type="title" />
    </element>
    - <H3>
    <eval>childNumber(this.parent)</eval>
    <children />
    </H3>
    </rule>
    - <rule>
    <target-element type="sect1" />
    - <DIV>
    <children />
    </DIV>
    </rule>
    - <rule>
    - <element type="sect2">
    <target-element type="title" />
    </element>
    - <H4>
    <children />
    </H4>
    </rule>
    - <rule>
    <target-element type="sect2" />
    <children />
    </rule>
    - <rule>
    <target-element type="itemizedlist" />
    - <UL>
    <children />
    </UL>
    </rule>
    - <rule>
    <target-element type="orderedlist" />
    - <OL>
    <children />
    </OL>
    </rule>
    - <rule>
    - <element type="varlistentry">
    <target-element type="listitem" />
    </element>
    - <DD>
    <children />
    </DD>
    </rule>
    - <rule>
    - <element type="itemizedlist">
    <target-element type="listitem" />
    </element>
    - <LI>
    <children />
    </LI >
    </rule>
    - <rule>
    - <element type="orderedlist">
    <target-element type="listitem" />
    </element>
    - <LI>
    <children />
    </LI>
    </rule>
    - <rule>
    <target-element type="quote" />
    <children />
    </rule>
    - <rule>
    <target-element type="citetitle" />
    - <I>
    <children />
    </I>
    </rule>
    - <rule>
    <target-element type="email" />
    - <I>
    <children />
    </I>
    </rule>
    - <rule>
    <target-element type="address" />
    - <PRE>
    <children />
    </PRE>
    </rule>
    - <rule>
    <target-element type="screen" />
    - <PRE>
    <children />
    </PRE>
    </rule>
    - <rule>
    <target-element type="emphasis" />
    - <I>
    <children />
    </I>
    </rule>
    - <rule>
    <target-element type="literal" />
    - <CODE>
    <children />
    </CODE>
    </rule>
    - <rule>
    <target-element type="ulink" />
    - <A target="_top" href="=getAttribute("url")">
    <children />
    </A>
    </rule>
    - <rule>
    <target-element type="emdash" />
    </rule>
    - <rule>
    <target-element type="bullet" />
    </rule>
    - <rule>
    <target-element type="lt" />
    <
    </rule>
    - <rule>
    <target-element type="amp" />
    </rule>
    - <rule>
    <target-element type="para" />
    - <P>
    <children />
    </P>
    </rule>
    - <rule>
    <target-element type="variablelist" />
    - <DL>
    <children />
    </DL>
    </rule>
    - <rule>
    <target-element type="varlistentry" />
    <children />
    </rule>
    - <rule>
    <target-element type="term" />
    - <DT>
    <children />
    </DT>
    </rule>
    - <rule>
    <target-element type="firstname" />
    - <SPAN>
    <children />
    </SPAN>
    </rule>
    - <rule>
    <target-element type="surname" />
    <children />
    </rule>
    - <rule>
    <target-element type="authorgroup" />
    <children />
    </rule>
    </xsl>
    null

    This is because the Microsoft XML Parser does not know to handle your DOCTYPE when only the Public identifier is specified.
    It's trying to open the dtd resource
    specified in the SYSTEM identifier
    which in your example is "", the empty
    string.
    I changed your:
    <!DOCTYPE article PUBLIC "-//Davenport//DTD DocBook V3.0//EN" "" [
    to:
    <!DOCTYPE article PUBLIC "-//Davenport//DTD DocBook V3.0//EN" "file:/C:/docbook/docbookx.dtd" [
    And was able to eliminate your parse error.
    However, your XSL file is not XSLT 1.0 compliant and it's not Microsoft-XSLT-in-IE5 compliant (from the December 1998 working draft), so I don't expect the XSL part of what you're trying to do will work.
    null

  • Text appears in black blocks.

    Hi
    I am using adobe reader in solaris 9 and any text I see is appearing as black blocks. For example when I open adobe reader help, the menu on the left hand window appears OK but when I select one of the topics like for example the first one (Using help), everything on the right hand window appears in black boxes. Nothing is readable. Other than this the application opens fine and all of the menus are OK. I would really apprieciate if anyone could help.
    Thank you

    ++Help to rescue the child++
    Very urgently money resources are required, translate who how many can on webmoney, perhaps you will rescue a life to our girl!!!!!
    Eight years old to Sasha Suldina, our daughter. In 2001 doctors have made it the diagnosis: sharp a blood cancer.
    The child has passed chemotherapy in the Moscow regional oncological clinic (Balashikha),
    Now is in remission. In January, 2003 have been found out viruses of hepatitises In and With,
    That very seriously threatens life of Sasha. Now we find additional financial assets for this purpose,
    To have possibility to spend qualitative treatment of hepatitises expensive medicines(these preparations are not included in the list of preferential medicines).
    We ask everyone who is not indifferent to the stranger to misfortune, to bring whenever possible the feasible contribution to business of rescue of the girl.
    Copies of documents are attached to the letter.
    Very much we ask, translate who how many can, probably you will rescue our girl
    This letter not a deceit, we Ask the help, a critical situation.
    Thanks all who helped, helps or wishes to help, the help to our girl now is necessary.
    Then we spent a lot of time with the child on air, walking on wood. After 3 hours of walks Sasha has started to complain of strong weariness and a pain in joints. Have taken temperature. 38,7. The doctor who has suspected a usual sharp respiratorno-virus infection has been immediately caused. Standard antibiotics and warm tea with a raspberry have been appointed. Late at night observed very strong pains in the bottom of a stomach and its pressure (the stomach was «доскообразный»).Fast immediately hospitalised the child in the Central regional hospital of of Balashikha with suspicion on a sharp appendicitis. Emergency operation has been spent, the diagnosis has proved to be true. The peritonitis, an inflammation began. Operation on appendicitis removal has passed successfully. But after operation condition Сашеньки has not improved. The heat (from above 38).В stably kept Every possible analyses of blood, including on rare infectious diseases, have not given results. But viruses of a belly typhus and a salmonella have been found out. Meanwhile a condition of the child promptly worsened. Haemoglobin level was more low 60, the quantity тромбоцитов and лекоцитов has sharply decreased. Donor blood and an intravenous hormone преднизолон was applied. From children's branch of oncology МООД of Balashikha, Svetlana Varfolomeyev has been invited to that moment were зав.отделением which has suspected system disease of blood at the child. Sasha it has been urgently translated in children's oncological branch where the diagnosis «sharp лимфобластный лейкоз» has been exposed, a blood cancer. Pathological бластных cages in a bone brain was more than 96 %.Состояние the child - the hardest. There has been immediately begun antibacterial therapy by antibiotics of a wide spectrum of action, in parallel - massed инфузионная therapy (glucose, физраствор), was applied преднизолон. After a while there has been begun chemotherapy of the sharp period under German report ALL BFM-90.
    Always yours, Irina and Evgenie
    SULDINA SASHA, 16.12.1996 of the river
    It is observed in the Moscow regional oncological clinic (МООД)
    (Acceptance date on the account - June, 2001)
    The clinic address: 143900 Moscow regions, Balashikha, street Karbysheva, 6, children's branch.
    The case record № 6562, an out-patient card - M - 377
    Attending physician МООД: Injushkina Evgenie Vasilevna
    Managing branch MOOD: Varfolomeyev Svetlana Rafaelevna
    The pediatrist on a residence: Меткалова Love Александровна
    The inquiry on physical inability: series МСЭ - 011, № 832324, is given out 31.10.01 Main bureaus
    медико - social examination on the basis of the Certificate № 538.
    (Physical inability is prolonged 13.11.03, the new inquiry: series МСЭ - 2001, № 1090547, is given out 13.11.03 Bureaus
    МСЭ Balashihinsky area of the Moscow area on the basis of the Certificate № 4123)
    (Physical inability is prolonged 09.12.04, the new inquiry: series МСЭ - 2001, № 5992493, is given out 09.12.04 Bureaus
    МСЭ Balashihinsky area of the Moscow area on the basis of the Certificate № 5041)
    The pension certificate: № 921810, it is given out by 20.12.02 Management ПФР of Balashihinsky area.
    Expensive operation is required, send money and rescue the girl
    The scanned copies of documents: http://new.swapfile.ru/files/31402 / % D0%9E%D1%82%D1%81%D0%BA%D0%B0%D0%BD%D0%B8%D1%80%D0%BE%D0%B2%D0%B0%D0%BD%D0%BD%D1%8B%D0%B5 + % D0%B4%D0%BE%D0%BA%D1%83%D0%BC%D0%B5%D0%BD%D1%82%D1%8B.rar
    Photos Of Sasha:
    http://new.swapfile.ru/files/31403 / % D0%A4%D0%BE%D1%82%D0%BE%D0%B3%D1%80%D0%B0%D1%84%D0%B8%D0%B8.rar
    For interested persons to render immediate material aid:
    ELECTRONIC PURSES: Transfer by means of system of payments WEBMONEY TRANSFER:
    PURSES: USD Z338444558172, EUR E227345040422, RUB R195149635709
    WMID: 416818651774
    The user (Suldin E. Ju) is certified.
    We very much hope for your support....

Maybe you are looking for

  • Error while updating the Document  Numbering Form

    While attempting to update Document Numbering , I received the following error message: "Another user-modified table "(NNM1) (ODBC -2039) Message 131-183 What does this mean? thankx and regards, Vikas Gupta

  • OpenScript ActionScript Error from Adobe Flash Player 9

    I get a popup ActionScript Error from Adobe Flash Player 9 when trying to record a Flex Tree object using OpenScript 9.2.1.0 Production. Specifically, I click on the Triangle that opens/closes the view of the child nodes underneath the parent node of

  • Automatical uninatall ThinkVantage Access Conections

    We need to uninstall ThinkVantage Access Connections for more than 5000 clients. But we can not do it manually. Who Can tell how to make the automatic removal of ThinkVantage Access Connections? Solved! Go to Solution.

  • How to  Exclude GLu2019s in calculation for amount to be collected

    Hi, I am new to FSCM and may I know the where we do the setting for below requirement This refers to  the calculation rules of FSCM module. Currently, the parameter 'amount to be collected' takes all outstanding items on a customer account into accou

  • Adding a line to the top of the mailing label

    Hi, I am a high school band teacher trying to send out letters to all of my students. I have the kids mailing addresses in Address book, as it doesn't appear I can do labels from Numbers or Pages. I used to do this with appleworks, but the school dis