Forms of a novice question

Hey all,.

I sorta picked up maintenance of our Forms 4.5 application even if I don't know anything about the forms. I need to just create a button that opens a web page when you click it. I created the button but I am at a loss on how to code relax when button pressed to open the web page. Lets say I want to launch a browser window that goes on www.google.com

I read on external OLE activation, that sounds like I'm going in the right direction?

Any ideas or help will be appreciated.

Thank you!!!

Published by: user8216750 on 10 Sep, 2008 13:46

If your customers have many/other browser to use the BEGINNING is your solution. try to use with HOST and this should solve your problem.

If you need anything else, it just to look for the Forums there are 1000s of solutions here, if you do find you need just post a new question.

Tony

Tags: Oracle Development

Similar Questions

  • [ADF, JDev12.1.3] Mastering the form with detail tables: questions about Insertion/deletion, commit / rollback, primary key, handling,...

    Hallo,

    I have a panelTabbed with 4 tabs. In the 1st tab, there is a master form while each of the other tabs, there is a secondary table. Each tab "reads" vo.

    Please see here http://digilander.libero.it/flattit82/OTN_FILES/VoInTabs.png

    I created the graphichs/layout and now it's time to take care of the management of the transaction.

    In the master tab / form

    1)

    Here, I would put a button to remove the master record.

    When I delete a record in the primary table an automatism in the database (MS SQL Server) will automatically delete any registration which are linked to it in the detail tables.

    Could the automated system as this causes problems?

    In the Details tabs / tables

    2)

    I would put a button in each row to delete the line delivering. Can I just drag-and - drop, like button, af line: table the operation "Delete" of the VO istance detail used to create the af: table?

    3)

    If Yes, by clicking on the button performs the default delete operation. But if need to perform some actions before you run the deletion (or, in General, any other operation), how can I do?

    4)

    To create a folder that I use Create or CreateInsert? And what are the differences between them?

    5)

    When I create a new record I need set the value of a field of the VO on which is based the af: table. He filed, let's call it RowDetNumber, is not displayed in the af: table, because it doesn't have be filled in by the user. Mut value is calculated and set "secretly" before posting the new line to the database table. In particular, its value must be calculated as

    Select max (RowDetNumber) + 1

    of table_on_which_VO_is_based

    where some_conditions_on_fields_of_the_same_VO


    For example

    The VO selects all of the records that have FkId =: value. If value = 3, VO selection records:

    ID RowDetNumber OtherFields FkId

    1   3     1             ...

    2   3     2             ...

    3   3     3             ...

    4   3     4             ...

    The new record must be RowDetNumber = 5.

    I would like to know how permorm this.

    In general

    6)

    If the database tables have 1 or more triggers I have to take care of something?

    7)

    On the book "development of Web Applications with Oracle ADF Essentials - Sten E. Vesterli", I have read it could be problems when you use tables of database non-Oracle with auto-increment fields.

    The advice of author uncheck the 'Required' box in the model.

    All tables in my database have a primary keys that are auto-increment... so I uncheck the "mandatory"?

    8)

    In general how do I set these fields? I have to put in OT, VO or both?

    Thank you

    Federico

    Hello

    (1) you will need to re - question child iterators so that they do not look stale data

    (2) Yes. Ensure that the table is PPRed after deleting the line (should happen automatically if ChangeEventPolicy on iterator is set to ppr)

    (3) double click on the button and it creates a bean managed for you. It allows you to check a box to generate the code he would run to remove the line. Everything you put in front of the generated code is your code before

    (4) in the case of tables, use createInsert as it adds the new line to the rowset (transaction)

    (5) suggest to do this use a database trigger and the data attribute value DBSequence VO type

    (6) do not 'drop table' issue in SQL (sorry, couldn't resist ;-))

    (7) If you follow the advice of the author, Yes. What it does, I have it does not throw an exception if a value is missing in the validation of the line

    (8) usually you set whatever it is at the level of the OS and put only things on VO if you want to override the default value for a specific behavior


    Frank

  • Novice question: PhoneGap and AJAX

    I having difficulty getting even basic AJAX to work with PhoneGap developer and wanted to see if someone could help me.

    I'm currently testing using the W3Schools PHP AJAX sample, so I can sort of "accumulation" my PhoneGap/AJAX capabilities to develop the functionality of user login for a mobile application that I've been responsible for creating. But, as someone who is not a programmer by any means (and that tends to confuse networking questions... don't even start on proxies!), I'm baffled to even try to get the W3Schools sample to work.

    The sample, which can be found here (AJAX PHP), is as follows. (For those who, like me, also not by spirit program and who think better visually, the sample has a text box where if you type the first few letters of the name of a person, it will try to find names starting with those letters in the database file that it invites. It displays the real-time results of what it finds in the area of text that the user types).

    HTML/JavaScript/AJAX:

    < html>
    < head >
    < script >
    function showHint (str) {}
    If (str.length == 0) {}
    document.getElementById("txtHint").innerHTML = "";
    return;
    } else {}
    var XMLHTTP = new XMLHttpRequest();
    XMLHTTP.onreadystatechange = function() {}
    If (xmlhttp.readyState == 4 & & xmlhttp.status == 200) {}
    document.getElementById("txtHint").innerHTML = xmlhttp.responseText;
    }
    };
    XMLHTTP. Open ("GET", "gethint.php? q =" + str, true);
    XMLHTTP. Send();
    }
    }
    < / script >
    < Sandwiched >
    < body >

    < p > < b > start typing a name into the field below:<b/b/b><p/p/p>
    < form >
    First name: <input type ='text' onkeyup ="showHint (this.value)">
    < /Form >
    < p > Suggestions: <span id ="txtHint"></ span><p/p/p>
    < /Body >
    </html >

    PHP file:

    <? PHP

    Table with the names

    $a [] = 'Anna ';

    $a [] = "Britain";

    $a [] = "Cinderella."

    $a [] = "Diana."

    $a [] = 'Eva ';

    $a [] = 'Fiona ';

    $a [] = "Gunda";

    $a [] = "Hege";

    $a [] = 'inga ';

    $a [] = 'Johanna ';

    $a [] = "Kitty";

    $a [] = "Linda."

    $a [] = 'Nina ';

    $a [] = "Ophelia."

    $a [] = "Petunia".

    $a [] = 'Amanda ';

    $a [] = 'Raquel ';

    $a [] = "Cindy."

    $a [] = 'Doris ';

    $a [] = "Eve."

    $a [] = "Evita";

    $a [] = "Sunniva.

    $a [] = "Tove";

    $a [] = "Unni"

    $a [] = "Purple";

    $a [] = "Liza."

    $a [] = 'Elizabeth ';

    $a [] = "Ellen."

    $a [] = 'Michael ';

    $a [] = 'Vicky ';

    get the q of URL parameter

    $q = $_REQUEST ['q'];

    $hint = "";

    Search all advice table if $q is different from «»

    if ($q !== "") {

    $q = strtolower ($q);

    $len = strlen ($q);

    {foreach ($a as $name)

    If (stristr ($q, substr ($name, 0, $len))) {}

    If ($hint = "") {}

    $hint = $name;

    } else {}

    $hint. = ", $name";

    }

    }

    }

    }

    Never out "no suggestion" If no reference has been found or out of correct values

    echo $hint = ""? "no suggestion": $hint; "

    ? >

    Test the HTML file in my browser, everything works perfectly.

    However, do the above in a project PhoneGap and test it on my Android phone, the possibility of dismissal of name does not work. And of course thanks to the AJAX control is not running.

    Anyone know how I can fix this problem? I've already put the following in my config.xml file and nothing changed:

    < access origin = "" * "subdomains ="true"/ >"

    Thanks in advance.

    You pouvez host PHP files locally on your dev machine, although I suggest the implementation of a virtual test machine so that you don't have to muck about with the main configuration of your dev machine.  In addition, if your virtual machine is a linux VM, which will give practice you when you put something in place elsewhere, because chances are good that you it would be deployed to a linux machine in the cloud. There are many devices out there who have a LAMP stack put in place of the out-of-the-box (LLinux Apache, MySQL, PHP) - for example, https://www.turnkeylinux.org/lampstack.

    As long as your mobile device is on the same network as your development computer (/VM), you can connect with a local IP address (like 192.168. *). You must also be able to connect using your local hostname (such as your - macbook.local) or something similar. It depends on how you configure when you create a virtual machine, but virtual machines live generally on your network with a different IP address on your dev machine. (This behavior, however, is usually the default.)

    You can also use environments such as Cloud9 and similar services to test the code like this. They are not suitable for production code, but you can run a PHP script (or node, etc.) and essentially have an external server underpowered with little or no effort on your part.

    Side note: personally, to avoid 'localhost' even during the test, because 'localhost' can mean several things depending on what you are testing for:

    • essay on a physical device: made localhost refers to the device
    • testing on an emulator: done localhost refers to the emulator
    • tests on iOS Simulator: done localhost refers to the machine of dev
    • test in a browser on your dev machine: locahost refers to the machine of dev

    If you use host names/IP addresses, there is no ambiguity, so why I suggest to use it.

    Finally, don't forget to check that your firewall accepts external requests on port, that you intend to use.

  • Create a survey - Novice Question of Javascript

    Hello

    I'm new to Javascript extrememely.  I did some research on the Internet and I need to copy and paste the code to create the results.  I am creating an online survey in Dreamweaver in which users select buttons to answer the questions, and then the total results appear at the bottom of the investigation.  So far, that's what I have:

    http://sicolaconsulting.com/SurveyTest4.php

    The problem I have with it is that on each line, the user can select more than one box.  I'm not so I thought of radio buttons would be better.  I then came to this:

    http://sicolaconsulting.com/SurveyTest3.php

    The problem is that with the function that I use, I can't get it displays the value of the first line.  I need to calculate the sum of all the lines.

    Can you help me to revise the script that I have to get my desired result.

    Here is my code for the first page, followed the code of the second page.  Thank you!

    <! DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional / / IN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" > ""

    "< html xmlns ="http://www.w3.org/1999/xhtml">".

    < head >

    < meta http-equiv = "Content-Type" content = text/html"; charset = utf-8 "/ >"

    < title > Untitled Document < /title >

    < title > < /title > survey

    < style type = "text/css" >

    body, td, th {}

    do-family: Tahoma, Geneva, without serif.

    }

    < / style >

    < link href = "stylesheets/SCG_Styles.css" rel = "stylesheet" type = "text/css" / > "

    < title > < /title > survey

    < script type = "text/javascript" >

    function TotalPart1A() {}

    document.survey.Total1A.value = ";

    var sum = 0;

    for (i = 0; i < document.survey.Part1A.length; i ++) {}

    If (document.survey.Part1A [i] .checked) {}

    Sum = sum + parseInt (document.survey.Part1A [i] .value);

    }

    }

    document.survey.Total1A.value = amount;

    }

    < /script >

    < link href = "stylesheets/SCG_Styles.css" rel = "stylesheet" type = "text/css" / > "

    < / head >

    < body >

    < div id = 'wrapper' > < br / >

    < div id = "poll-header" > < but strong >: < facilities > < br / >

    The study of Learning Style assesses your general approach to learning. < br / >

    It does not predict your behavior, but it is a clear indication of your preferences of style overall. < br / >

    < br / >

    < Strong > instructions <: facilities > < br / >

    Circle the answer that represents your approach for each item. Fill in all fields. < br / >

    There are eleven major activities representing 12 different aspects of your learning style. < br / >

    When you read the instructions, try to think of what you do in general when learning. < br / >

    < br / >

    < Strong > time: < facilities > < br / >

    It takes about 30 minutes to complete the survey. Don't spend too much time on any element. Indicate your immediate response (or feeling) and go to the next point. < br / >

    < br / >

    < strong > for each element, type your immediate response: < br / >

    0 = never 1 = rarely 2 = sometimes 3 = often 4 = always < facilities > < br / >

    < / div >

    < div id = "poll" >

    < name of the form = "poll" >

    < div id = 'poll-section1' >

    < table class = "survey on the table" cellspacing = "0" width = "812" >

    < b >

    < td height = "24" colspan = "2" align = "left" bgcolor = "#CCCCCC" > < strong > part 1: how to use my physical senses < facilities > < table >

    < td height = "24" align = "center" bgcolor = "#CCCCCC" > < strong > 1 < facilities > < table >

    < td height = "24" align = "center" bgcolor = "#CCCCCC" > < strong > 2 < facilities > < table >

    < td height = "24" align = "center" bgcolor = "#CCCCCC" > < strong > 3 < / strong > < table >

    < td height = "24" align = "center" bgcolor = "#CCCCCC" > < strong > 4 < facilities > < table >

    < /tr >

    < b >

    < td width = "31" height = "27" > 1 < table >

    < td width = "515" align = "left" > I remember something better if I write it down. < table >

    < td width = "60" > < input type = "checkbox" name = "Part1A" value = "1" onchange = "TotalPart1A ()" / > < table >

    < td width = "60" > < input type = "checkbox" name = "Part1A" value = "2" onchange = "TotalPart1A ()" / > < table >

    < td width = "60" > < input type = "checkbox" name = "Part1A" value = "3" onchange = "TotalPart1A ()" / > < table >

    < td width = "60" > < input type = "checkbox" name = "Part1A" value = "4" onchange = "TotalPart1A ()" / > < table >

    < /tr >

    < b >

    < td width = "31" bgcolor = "#EAEAEA" > < table > 2

    < height td = "27" align = "left" bgcolor = "#EAEAEA" > I take notes detailed during conferences. < table >

    < td bgcolor = "#EAEAEA" > < input type = "checkbox" name = "Part1A" value = "1" onchange = "TotalPart1A ()" / > < table >

    < td bgcolor = "#EAEAEA" > < input type = "checkbox" name = "Part1A" value = "2" onchange = "TotalPart1A ()" / > < table >

    < td bgcolor = "#EAEAEA" > < input type = "checkbox" name = "Part1A" value = "3" onchange = "TotalPart1A ()" / > < table >

    < td bgcolor = "#EAEAEA" > < input type = "checkbox" name = "Part1A" value = "4" onchange = "TotalPart1A ()" / > < table >

    < /tr >

    < b >

    < td > 3 < table >

    < td height = "27" align = "left" > when I listen, I visualize images, figures or words in my head. < table >

    < td > < input type = "checkbox" name = "Part1A" value = "1" onchange = "TotalPart1A ()" / > < table >

    < td > < input type = "checkbox" name = "Part1A" value = "2" onchange = "TotalPart1A ()" / > < table >

    < td > < input type = "checkbox" name = "Part1A" value = "3" onchange = "TotalPart1A ()" / > < table >

    < td > < input type = "checkbox" name = "Part1A" value = "4" onchange = "TotalPart1A ()" / > < table >

    < /tr >

    < b >

    < td bgcolor = "#EAEAEA" > < table > 4

    < height td = "27" align = "left" bgcolor = "#EAEAEA" > I prefer to learn with TV or video rather than other media. < table >

    < td bgcolor = "#EAEAEA" > < input type = "checkbox" name = "Part1A" value = "1" onchange = "TotalPart1A ()" / > < table >

    < td bgcolor = "#EAEAEA" > < input type = "checkbox" name = "Part1A" value = "2" onchange = "TotalPart1A ()" / > < table >

    < td bgcolor = "#EAEAEA" > < input type = "checkbox" name = "Part1A" value = "3" onchange = "TotalPart1A ()" / > < table >

    < td bgcolor = "#EAEAEA" > < input type = "checkbox" name = "Part1A" value = "4" onchange = "TotalPart1A ()" / > < table >

    < /tr >

    < b >

    < td > 5 < table >

    < td = "27" align = "left" height > I use color coding to help me because I got to work. < table >

    < td > < input type = "checkbox" name = "Part1A" value = "1" onchange = "TotalPart1A ()" / > < table >

    < td > < input type = "checkbox" name = "Part1A" value = "2" onchange = "TotalPart1A ()" / > < table >

    < td > < input type = "checkbox" name = "Part1A" value = "3" onchange = "TotalPart1A ()" / > < table >

    < td > < input type = "checkbox" name = "Part1A" value = "4" onchange = "TotalPart1A ()" / > < table >

    < /tr >

    < b >

    < td bgcolor = "#EAEAEA" > < table > 6

    < height td = "27" align = "left" bgcolor = "#EAEAEA" > I need guidelines written for tasks. < table >

    < td bgcolor = "#EAEAEA" > < input type = "checkbox" name = "Part1A" value = "1" onchange = "TotalPart1A ()" / > < table >

    < td bgcolor = "#EAEAEA" > < input type = "checkbox" name = "Part1A" value = "2" onchange = "TotalPart1A ()" / > < table >

    < td bgcolor = "#EAEAEA" > < input type = "checkbox" name = "Part1A" value = "3" onchange = "TotalPart1A ()" / > < table >

    < td bgcolor = "#EAEAEA" > < input type = "checkbox" name = "Part1A" value = "4" onchange = "TotalPart1A ()" / > < table >

    < /tr >

    < b >

    < td > < table > 7

    < td = "27" align = "left" height > I watch people understand what they say. < table >

    < td > < input type = "checkbox" name = "Part1A" value = "1" onchange = "TotalPart1A ()" / > < table >

    < td > < input type = "checkbox" name = "Part1A" value = "2" onchange = "TotalPart1A ()" / > < table >

    < td > < input type = "checkbox" name = "Part1A" value = "3" onchange = "TotalPart1A ()" / > < table >

    < td > < input type = "checkbox" name = "Part1A" value = "4" onchange = "TotalPart1A ()" / > < table >

    < /tr >

    < b >

    < td bgcolor = "#EAEAEA" > < table > 8

    < height td = "27" align = "left" bgcolor = "#EAEAEA" > I understand speakers when they write on the Board of Directors. < table >

    < td bgcolor = "#EAEAEA" > < input type = "checkbox" name = "Part1A" value = "1" onchange = "TotalPart1A ()" / > < table >

    < td bgcolor = "#EAEAEA" > < input type = "checkbox" name = "Part1A" value = "2" onchange = "TotalPart1A ()" / > < table >

    < td bgcolor = "#EAEAEA" > < input type = "checkbox" name = "Part1A" value = "3" onchange = "TotalPart1A ()" / > < table >

    < td bgcolor = "#EAEAEA" > < input type = "checkbox" name = "Part1A" value = "4" onchange = "TotalPart1A ()" / > < table >

    < /tr >

    < b >

    < td > < table > 9

    < td = "27" align = "left" height > graphs, charts, and maps help me understand what a person is saying. < table >

    < td > < input type = "checkbox" name = "Part1A" value = "1" onchange = "TotalPart1A ()" / > < table >

    < td > < input type = "checkbox" name = "Part1A" value = "2" onchange = "TotalPart1A ()" / > < table >

    < td > < input type = "checkbox" name = "Part1A" value = "3" onchange = "TotalPart1A ()" / > < table >

    < td > < input type = "checkbox" name = "Part1A" value = "4" onchange = "TotalPart1A ()" / > < table >

    < /tr >

    < b >

    < td bgcolor = "#EAEAEA" > < table > 10

    < height td = "27" align = "left" bgcolor = "#EAEAEA" > I remember the faces of people, but not their names. < table >

    < td bgcolor = "#EAEAEA" > < input type = "checkbox" name = "Part1A" value = "1" onchange = "TotalPart1A ()" / > < table >

    < td bgcolor = "#EAEAEA" > < input type = "checkbox" name = "Part1A" value = "2" onchange = "TotalPart1A ()" / > < table >

    < td bgcolor = "#EAEAEA" > < input type = "checkbox" name = "Part1A" value = "3" onchange = "TotalPart1A ()" / > < table >

    < td bgcolor = "#EAEAEA" > < input type = "checkbox" name = "Part1A" value = "4" onchange = "TotalPart1A ()" / > < table >

    < /tr >

    < b >

    < td > < table >

    < td = '27' align = 'right' height > A TOTAL: < table >

    < td colspan = "2" > < input type = "text" size = "10" name = "Total1A" value = "0" / > < table >

    < td align = "right" > < table >

    < td > < table >

    < /tr >

    < b >

    < td > < table >

    < td height = "27" align = "right" > < table >

    < td > < table >

    < td > < table >

    < td align = "right" > < table >

    < td > < table >

    < /tr >

    < /table >

    < / make >

    < / div >

    < / div >

    < / body >

    < / html >

    ______________________________________________________________________ _________________________________

    <! DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional / / IN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" > ""

    "< html xmlns ="http://www.w3.org/1999/xhtml">".

    < head >

    < meta http-equiv = "Content-Type" content = text/html"; charset = utf-8 "/ >"

    < title > Untitled Document < /title >

    < title > < /title > survey

    < style type = "text/css" >

    body, td, th {}

    do-family: Tahoma, Geneva, without serif.

    }

    < / style >

    < link href = "stylesheets/SCG_Styles.css" rel = "stylesheet" type = "text/css" / > "

    < script type = "text/javascript" >

    function TotalPart1A() {}

    document.survey.Total1A.value = ";

    var sum = 0;

    for (i = 0; i < document.survey.radiogroup1A.length; i ++) {}

    If (document.survey.radiogroup1A [i] .checked) {}

    Sum = sum + parseInt (document.survey.radiogroup1A [i] .value);

    }

    }

    document.survey.Total1A.value = amount;

    }

    < /script >

    < link href = "stylesheets/SCG_Styles.css" rel = "stylesheet" type = "text/css" / > "

    < / head >

    < body >

    < div id = 'wrapper' > < br / >

    < div id = "poll-header" > < but strong >: < facilities > < br / >

    The study of Learning Style assesses your general approach to learning. < br / >

    It does not predict your behavior, but it is a clear indication of your preferences of style overall. < br / >

    < br / >

    < Strong > instructions <: facilities > < br / >

    Circle the answer that represents your approach for each item. Fill in all fields. < br / >

    There are eleven major activities representing 12 different aspects of your learning style. < br / >

    When you read the instructions, try to think of what you do in general when learning. < br / >

    < br / >

    < Strong > time: < facilities > < br / >

    It takes about 30 minutes to complete the survey. Don't spend too much time on any element. Indicate your immediate response (or feeling) and go to the next point. < br / >

    < br / >

    < strong > for each element, type your immediate response: < br / >

    0 = never 1 = rarely 2 = sometimes 3 = often 4 = always < facilities > < br / >

    < / div >

    < div id = "poll" >

    < name of the form = "Poll" id = "poll" >

    < div id = 'poll-section1' >

    < table class = "survey on the table" cellspacing = "0" width = "812" >

    < b >

    < td height = "24" colspan = "2" align = "left" bgcolor = "#CCCCCC" > < strong > part 1: how to use my physical senses < facilities > < table >

    < td height = "24" align = "center" bgcolor = "#CCCCCC" > < strong > 1 < facilities > < table >

    < td height = "24" align = "center" bgcolor = "#CCCCCC" > < strong > 2 < facilities > < table >

    < td height = "24" align = "center" bgcolor = "#CCCCCC" > < strong > 3 < / strong > < table >

    < td height = "24" align = "center" bgcolor = "#CCCCCC" > < strong > 4 < facilities > < table >

    < /tr >

    < b >

    < td width = "31" height = "27" > 1 < table >

    < td width = "515" align = "left" > I remember something better if I write it down. < table >

    < td width = "60" > < input type = "radio" name = "radiogroup1A" value = "1" onchange = "TotalPart1A ()" / > < table >

    < td width = "60" > < input type = "radio" name = "radiogroup1A" value = "2" onchange = "TotalPart1A ()" / > < table >

    < td width = "60" > < input type = "radio" name = "radiogroup1A" value = "3" onchange = "TotalPart1A ()" / > < table >

    < td width = "60" > < input type = "radio" name = "radiogroup1A" value = "4" onchange = "TotalPart1A ()" / > < table >

    < /tr >

    < b >

    < td width = "31" bgcolor = "#EAEAEA" > < table > 2

    < height td = "27" align = "left" bgcolor = "#EAEAEA" > I take notes detailed during conferences. < table >

    < td bgcolor = "#EAEAEA" > < input type = "radio" name = "radiogroup2A" value = "1" onchange = "TotalPart1A ()" / > < table >

    < td bgcolor = "#EAEAEA" > < input type = "radio" name = "radiogroup2A" value = "2" onchange = "TotalPart1A ()" / > < table >

    < td bgcolor = "#EAEAEA" > < input type = "radio" name = "radiogroup2A" value = "3" onchange = "TotalPart1A ()" / > < table >

    < td bgcolor = "#EAEAEA" > < input type = "radio" name = "radiogroup2A" value = "4" onchange = "TotalPart1A ()" / > < table >

    < /tr >

    < b >

    < td > 3 < table >

    < td height = "27" align = "left" > when I listen, I visualize images, figures or words in my head. < table >

    < td > < input type = "radio" name = "radiogroup3A" value = "1" onchange = "TotalPart1A ()" / > < table >

    < td > < input type = "radio" name = "radiogroup3A" value = "2" onchange = "TotalPart1A ()" / > < table >

    < td > < input type = "radio" name = "radiogroup3A" value = "3" onchange = "TotalPart1A ()" / > < table >

    < td > < input type = "radio" name = "radiogroup3A" value = "4" onchange = "TotalPart1A ()" / > < table >

    < /tr >

    < b >

    < td bgcolor = "#EAEAEA" > < table > 4

    < height td = "27" align = "left" bgcolor = "#EAEAEA" > I prefer to learn with TV or video rather than other media. < table >

    < td bgcolor = "#EAEAEA" > < input type = "radio" name = "radiogroup4A" value = "1" onchange = "TotalPart1A ()" / > < table >

    < td bgcolor = "#EAEAEA" > < input type = "radio" name = "radiogroup4A" value = "2" onchange = "TotalPart1A ()" / > < table >

    < td bgcolor = "#EAEAEA" > < input type = "radio" name = "radiogroup4A" value = "3" onchange = "TotalPart1A ()" / > < table >

    < td bgcolor = "#EAEAEA" > < input type = "radio" name = "radiogroup4A" value = "4" onchange = "TotalPart1A ()" / > < table >

    < /tr >

    < b >

    < td > 5 < table >

    < td = "27" align = "left" height > I use color coding to help me because I got to work. < table >

    < td > < input type = "radio" name = "radiogroup5A" value = "1" onchange = "TotalPart1A ()" / > < table >

    < td > < input type = "radio" name = "radiogroup5A" value = "2" onchange = "TotalPart1A ()" / > < table >

    < td > < input type = "radio" name = "radiogroup5A" value = "3" onchange = "TotalPart1A ()" / > < table >

    < td > < input type = "radio" name = "radiogroup5A" value = "4" onchange = "TotalPart1A ()" / > < table >

    < /tr >

    < b >

    < td bgcolor = "#EAEAEA" > < table > 6

    < height td = "27" align = "left" bgcolor = "#EAEAEA" > I need guidelines written for tasks. < table >

    < td bgcolor = "#EAEAEA" > < input type = "radio" name = "radiogroup6A" value = "1" onchange = "TotalPart1A ()" / > < table >

    < td bgcolor = "#EAEAEA" > < input type = "radio" name = "radiogroup6A" value = "2" onchange = "TotalPart1A ()" / > < table >

    < td bgcolor = "#EAEAEA" > < input type = "radio" name = "radiogroup6A" value = "3" onchange = "TotalPart1A ()" / > < table >

    < td bgcolor = "#EAEAEA" > < input type = "radio" name = "radiogroup6A" value = "4" onchange = "TotalPart1A ()" / > < table >

    < /tr >

    < b >

    < td > < table > 7

    < td = "27" align = "left" height > I watch people understand what they say. < table >

    < td > < input type = "radio" name = "radiogroup7A" value = "1" onchange = "TotalPart1A ()" / > < table >

    < td > < input type = "radio" name = "radiogroup7A" value = "2" onchange = "TotalPart1A ()" / > < table >

    < td > < input type = "radio" name = "radiogroup7A" value = "3" onchange = "TotalPart1A ()" / > < table >

    < td > < input type = "radio" name = "radiogroup7A" value = "4" onchange = "TotalPart1A ()" / > < table >

    < /tr >

    < b >

    < td bgcolor = "#EAEAEA" > < table > 8

    < height td = "27" align = "left" bgcolor = "#EAEAEA" > I understand speakers when they write on the Board of Directors. < table >

    < td bgcolor = "#EAEAEA" > < input type = "radio" name = "radiogroup8A" value = "1" onchange = "TotalPart1A ()" / > < table >

    < td bgcolor = "#EAEAEA" > < input type = "radio" name = "radiogroup8A" value = "2" onchange = "TotalPart1A ()" / > < table >

    < td bgcolor = "#EAEAEA" > < input type = "radio" name = "radiogroup8A" value = "3" onchange = "TotalPart1A ()" / > < table >

    < td bgcolor = "#EAEAEA" > < input type = "radio" name = "radiogroup8A" value = "4" onchange = "TotalPart1A ()" / > < table >

    < /tr >

    < b >

    < td > < table > 9

    < td = "27" align = "left" height > graphs, charts, and maps help me understand what a person is saying. < table >

    < td > < input type = "radio" name = "radiogroup9A" value = "1" onchange = "TotalPart1A ()" / > < table >

    < td > < input type = "radio" name = "radiogroup9A" value = "2" onchange = "TotalPart1A ()" / > < table >

    < td > < input type = "radio" name = "radiogroup9A" value = "3" onchange = "TotalPart1A ()" / > < table >

    < td > < input type = "radio" name = "radiogroup9A" value = "4" onchange = "TotalPart1A ()" / > < table >

    < /tr >

    < b >

    < td bgcolor = "#EAEAEA" > < table > 10

    < height td = "27" align = "left" bgcolor = "#EAEAEA" > I remember the faces of people, but not their names. < table >

    < td bgcolor = "#EAEAEA" > < input type = "radio" name = "radiogroup10A" value = "1" onchange = "TotalPart1A ()" / > < table >

    < td bgcolor = "#EAEAEA" > < input type = "radio" name = "radiogroup10A" value = "2" onchange = "TotalPart1A ()" / > < table >

    < td bgcolor = "#EAEAEA" > < input type = "radio" name = "radiogroup10A" value = "3" onchange = "TotalPart1A ()" / > < table >

    < td bgcolor = "#EAEAEA" > < input type = "radio" name = "radiogroup10A" value = "4" onchange = "TotalPart1A ()" / > < table >

    < /tr >

    < b >

    < td > < table >

    < td = '27' align = 'right' height > A TOTAL: < table >

    < td colspan = "2" > < input type = "text" size = "10" name = "Total1A" value = "0" / > < table >

    < td align = "right" > < table >

    < td > < table >

    < /tr >

    < b >

    < td > < table >

    < td height = "27" align = "right" > < table >

    < td > < table >

    < td > < table >

    < td align = "right" > < table >

    < td > < table >

    < /tr >

    < /table >

    < / make >

    < / div >

    < / div >

    < / body >

    < / html >

    Try this:

    http://jsfiddle.NET/NancyO/bwkM5/

    Nancy O.

  • Dynamic form: XML Data Import Question (I'm almost there..)

    Niall was very useful gettig me at this point.  Thank you very much!

    I did all my updates and changes that have been suggested in the following form:

    https://Acrobat.com/#d=t1uvlNlj4Yrh7zxtpbJiRg

    My question is, when I import the XML data file, only a few of the shows of information upward?

    Thought of back in all it took to get to this day, I don't know if I should not be only to count my blessings to be where I am?  But, if someone (and knowing Niall is probably reading this - but I was too embarrassed to ask for more help), could help to tell me what I should do, I think it will be the last time I have to ask for help... at least on this form.


    Thank you!!!

    Hi Rob,

    In this case you don't need a data connection.

    If you select a field and go to object > link tab, you will see a drop-down list to specify the data binding for this field. Currently it is set to 'None', which means that the field data will not be exported. Similarly, if you had an XML file with data, it would not be imported into the field.

    Here is a screenshot of LC Designer ES2, which is slightly different for earlier versions, but the basic process is the same.

    Go through each field and change 'No data binding' / 'None' to 'Use the name' / 'Normal '.

    Then when you are proposing and import, data populates the fields.

    Hope that helps,

    Niall

  • Novice question-Can insert or delete pages?

    Hello

    hoping someone can help, I created a form with a simple table for staff to use in a report. Some will have a page and others 2 or 3 anyway is to have the user to insert a new page into double if they wish to?

    Thanks in advance

    Not knowing what's in your "simple table", it is difficult to make suggestions. But if you have a text field in the table to expand to different users, just make a multiline field. Select the field in the object field tab, check on allow multiple lines. On the page layout tab, check Expand to fit. Make sure that the parent form allows content sank. And this of course only works in dynamic forms.

    If you talk about something more to add rows to a table, it is possible also, but a completely different procedure!

  • Chronology of novice question

    Friendly assistance requested please!

    Maybe there's another way to do it? After several hours of error and watch stuff on Lynda.com Im still stuck.

    I'm new to Actionscript and try to fall along using the Code Snippts so I'd appreciate any help. I could normally get this all work if I put everything in a timeline. However, I tried to clean my calendar and I noticed a lot of videos have been people have 4 or 5 layers on the main timeline and then add the rest. Any help would be greatly appreciated.

    My calendar has 4 layers in the following order:

    • Actions
    • Buttons
    • Main
    • BG

    Question 1:

    1. main (inter-generational: Movieclip) has incorporated a Tween who plays as soon as I test the movie. I can't stop this by adding a "stop();" on the first picture in the embedded timeline. Curiously, however, the film will continue to play if the "stop();" is placed as part of frist on the main timeline.  Why is this the case?

    Question 2 (and my main problem):

    2. I have 3 buttons (forward, backward and Stop) currently im using just forward until I make it work properly. I want the 'next' button to continue to act as the button image following throughout the film, but I also need the key to advance to the interpolation integrated within the Movieclip of the hand. How can I get the button "Next" to access the interpolation into the movieclip?

    Currently my next button has the following code:

    ________________________________________________________________

    Play_btn.addEventListener (MouseEvent.CLICK, fl_ClickToGoToNextFrame_11);

    function fl_ClickToGoToNextFrame_11(event:MouseEvent):void
    {
    nextFrame();
    }

    ________________________________________________________________

    So I thought that if I added another action on the layer in the second picture 'Hand' it advance to the embeded interpolation and read it.

    ______________________________________________________________________________

    Main.addEventListener (MouseEvent.CLICK, fl_ClickToGoToAndPlayFromFrame_5);

    function fl_ClickToGoToAndPlayFromFrame_5(event:MouseEvent):void
    {
    gotoAndPlay ("WesternWayOfWar");
    }

    ______________________________________________________________________________

    Thank you, David

    If you want to click the movieclip of the hand and have it play and that the code is located in the timeline that holds this movieclip, then you must use...

    Main.addEventListener (MouseEvent.CLICK, fl_ClickToGoToAndPlayFromFrame_5);

    function fl_ClickToGoToAndPlayFromFrame_5(event:MouseEvent):void
    {
    Main.gotoAndPlay ("WesternWayOfWar");
    }

    If you wanted the movieclip hand just play when you get to this image of the chronology of container, then you can simply use...

    Main.gotoAndPlay ("WesternWayOfWar");

  • Forms and reports Migration question

    Nice day

    We migrated a planning application to a customer of their Production to their Test environment. Everything seems 100% except for forms and reports. I am able to view details about the forms, but am not able to open them and the same is true for reports. I remember reading a post somewhere that he had specific tables in the repository of planning that had to be copied through.

    If someone can help with this problem? I need to know what schema and tables? The repository for planning is in Oracle.

    Much appreciated in advance
    Kind regards
    Jean

    It should be good.

    See you soon

    John
    http://John-Goodwin.blogspot.com/

  • form on a table question

    I created a page with a form on a table. This form is used to create and edit features. I would like the page titles and the region to take into account the current action taken (Edit X / X create), is - it possible and if so, how?

    Hello

    Do something like the following:

    1 Add an item hidden on the page called, say, P1_HEADING

    2 - Add a new process page that runs before header and has a sequence number of 1 (to ensure that it runs before anything else). The process page should be something like (assumes that P1_ID is the primary key of the form):

    BEGIN
     IF :P1_ID IS NULL THEN
      :P1_HEADING := 'Create';
     ELSE
      :P1_HEADING := 'Edit';
     END IF;
    END;
    

    3 - change your region and add & P1_HEADING. everywhere where you want to edit or create to show up

    4 - do the same for your page title

    Andy

  • Wake up one morning and my CLIQ suddenly formed a lot of questions...

    I had no problems with my CLIQ so far (I got my phone in June this year) but I woke up yesterday with my phone will madly, playing some mysterious ring. I looked around my phone trying to see what he had and I had realized that she had changed my ringtone for notification by itself (I got text messages), and then find more weird things that had happened. I realized that my home button wasn't working and the button of my camera does not work anymore, but I can still use the appliance if I open it in my dock. I also realized that in my Happenings widget, it kept saying that I didn't have a MotoBlur account, what I do... and when I press "setup", it does not connect, it ceases to appear after I check all messages. I also had to redo my security lock and do not access some of my applications, I have to turn on the GPS to operate.

    The day before, he acted completely normal and I had plugged to load all night while I was sleeping. However, it was not when and the power didn't go out, so that the no what he messed up...

    I appreciate the help,

    Larkyn

    There are 2 steps to try here.

    1. just try to disable it and remove your battery, then your SIM for a few minutes then reinstall and back on the power.

    2. I would try a factory reset, just make sure to save you going to need like texts, emails and call logs. Your SD card will not be touched, so photos and your music will remain. Your contacts will return back after cutting in the blur and your Google account. Also the first time on the market, you will find all your apps listed, free and paid. This will be shown on the first time on the market after that will show only your paid apps.

  • Novice question

    Hello all - I'm new to the gun world and I learn as much as possible every day. I have a Canon Rebel XTI EOS with lens 18-55 mm standard.

    I would like to take the next step and get one better lens (s) - one to close upwards, portaits (top opening) and the other for daily use.  For the most part, I take picture of children and family - so it will be running and various light most of the time.

    My budget is alo limited in the sense that I can't afford most of 1000,00 versions

    Right now I'm looking for something that will give more the f3.5 and sharper images.

    I know that everyone has asked around but the device model photo that I was not... but I'm sure that most of the lens should work.

    Thank you.

    Adrian

    Adrian,

    Portraits: anything between 50 and 85 will be good for portraits if the aperture is f/2.8 or wider. 50 mm would be double that shooting for general use. 85 mm could double as a telephoto modest if you shoot children running outside autour where they are a little further away, but would be more difficult to use indoors where you can't stand back 15-20 feet to shake 2 people on board. 60 mm would be good at portraits but would do double duty as a macro lens too.

    Landscape: Landscape is USUALLY done with a wider lens, but not always. To do this, you could stick with the end of your 18mm kit lens. Landscapes do not move so if you use a tripod you can shoot with a narrow opening for a large depth of field in short (such as f/11 or f/16) because you can set hours of crazy-long shutter, as 1 second or 30 seconds or 1 minute or just what you need.

    Use: for plans to use general, you probably want something wider than for portraits, and you can crop the image a bit in post if necessary. 40mm would be very good for this.

  • Novice question - scaling of images in PP

    When I pull my photos still imported from the source monitor timeline sequence and display in the program monitor, they re-size.  I see the option 'worthy' and percentages in the two panels, but my photos are be cropped.  What Miss me?  My pictures are already exactly as I would like in my video when I import them into the project Panel.  Thank you!

    Option 'Fit' is simply one of the ways to see the program and has nothing to do with the actual production during the export, but Fit is the option that will represent how the output will be. So if the image is cropped, it will also export. A few things you can do:

    (1) in the preferences, the SCALE ON THE SETTING value and then all of the imported media will be sized to the sequence. However, does not affect the previously imported stills/clips. Can click clips in order, then manually change by sequence in this case.

    (2) use the Adobe motion effect and ADAPTS each image as you wish

    Thank you

    Jeff Pulera

    Safe Harbor computers

  • Novice question - shortening and then recording the smallest Clip under a new name

    Brand new - is there an easy way to take a video file, I imported and set a new starting point and the end point, and then save it under a new name? The subject of my video requires a camera to film for a few minutes, but I only get action for 10 seconds.  I want to quickly preview the throughout the video and make shorter copies and then begin to work with them on the timeline.  So, is there an easy way to shorten a MP4 for example and then save it in the shorter size before you begin to import in the chronology and the PP?

    Thank you

    If you have a lot of work like this, where you need subitems in the sections named for specific purposes, you might consider using prelude, as it is designed expressly for this workflow. You can view clips, starting points, then tell him what you want to call and where to put it... and it will transcode your 'new' clip anywhere you want. There are a few programs out there 'in the wild' that can supposedly some formats and lop off just before & after an area chosen without re-encoding, but I don't know anything about this other that they exist.

    Neil

  • Novice questions

    Hello

    I know not well at all the normal VmWare tools.

    I have a fairly simple project. I have 6/7 physical servers (microsoft os server) that are there that to maintain small apps that need a particular environment.

    I'd like to buy a big server and create virtual servers pour replace them physics of so-called servers. What licenses do I need?

    Thank you pour your answers.

    Kind regards

    Bruno

    All depands for 6 or 7 servers on 1 server, then hypervisor which is free but your needs will be fine (warning 5 hypervisor will be limited to 32 GB of physical RAM however 4.1 Hypervizor didn't limit).

    If you want to easily clone your VM etc: license key

    If you want the high available on 2 servers and backup of virtual machines to disk or network share: essential Plus license

    Pour info Hypervizor ESXi but with free license and therefore less functionality, but otherwise it's the same instalation CD

    Eric

  • Hi all, ready for a quick mask of a novice ;-) question?

    When I do a quick mask selection, he becomas 'red - ish' like it's supposed to. When I leave the however quick mask mode, the painted area does not become a visible (yes I checked the correct option dialog box, I guess that, according to a friend) however selected area. But when I make any adjustment, saturation of colors for example, it affects only the area that I selected in the Quick Mask mode, I can't see except for the adjustment. How the hell is this I don't has managed to get there. What have I done wrong or is not done at all? You kind attention and quick response is much appreciated. Best /Stefan

    Hello, Stefan, Photoshop has a feature that allows to hide the additional elements, such as the limits of selection, guides, grid. It is located in the view menu. (Extras, or for a more granular corner, show >...)

    As you can see, it's the shortcut is CMD + on Mac or CTRL + H on a PC (mnemonic: hide)

Maybe you are looking for

  • iOS 10 wheel black screen

    Been using iOS 10.0.1 for about a week on an iPhone 6 and it is buggy. The questions below are only occurred since the upgrade to iOS 10. Please fix in the next version or offer a solution. 1 random black screen with the spinning wheel. The upgrade w

  • Can I find out if a track is stereo?

    V.12.3.2.35 iTunes, can I know if a track/song is stereo or mono? I tried "Get Info" but I can't find a tab in this regard. Thank you for your suggestions.

  • Pavilion 6630f: onboard video does not when network card installed

    I have a pavilion p6630f. I got a computer for said NIC 4 network card. Now, this motherboard is not a x 4 slot for the card, but it has a x 16 slot. I put the primary onboard graphics, but it will not yet properly start with this network adapter. No

  • HP folio 9470 m: bios

    bios lost password aminstrator. need help to get into the bios

  • HP ENVY20-d013w has a black screen

    The machine starts and goes to the login screen, so it turns out that the monitor is working.  However, after that record on the screen becomes black and all you can see is the cursor.  It is a windows system 8.  I went through the steps to http://su