Radio button not read successful​ly

Hi all,
I have a quick prototype APP I'm putting together in LabVIEW 8.2, under Windows XP, with a NI USB-6212 DAQ.
I am using daqMx to do group reads and writes, and the speed is acceptable.
However, I'm having an issue making a decision based on the user selection of a radio button.
At startup, I set the radio button to 'manual' programmatically.  The other 2 options are 'semi-auto' and 'automated'.
I then enter a loop and allow the user to set up whatever parameters they need, etc.
There is a folder tab on the front page of the VI, but it is not directly related, and I don't read it's value (that is, I don't check to see which page is being used).
When the user presses 'Go', I read the value from the radio button (manual, semi-auto, or automated) as a selector in a case statement.  Based on the user's setting of the radio button I set operational variables for use later in the program.
However, The functionality is not working as I expect.  I placed flags within the case statement to see what it is doing, and the VI does not reliably execute the case statement 'option' which agrees with the setting of the radio button.  Sometimes I set 'semi-auto' and the case statement for 'manual' is executed.
I had been reading the radio button from a 'local variable', so I swapped that around and I read from the 'terminal' now.  No change.
Any thoughts?  Do I have to do something before I can read the radio buttons reliably?
Thanks,
Jeff

Hi again.
Thank you for your responses.  I was putting together a small application to show the problem, and was able to recreate it.
Then I noticed that I was reading the radio button outside of any structure, thereforfe it was pulling in an undefined value before the user clicked 'start'.
I checked my 'real' code and that appears to be the problem.
Once I placed the 'read' of the radio button inside a control structure, so that I defined when it was read, all is good.
Thanks,
Jeff

Similar Messages

  • How to unselect / deselect a radio button in Reader?

    How do you unselect / deselect a radio button in Reader? Like if you have a group of radio buttons with three choices, and the end-user selects one but then wants to unselect / deselect the choice and leave that radio button group blank / unanswered.
    Thanks,

    You should be able to go to the Forms menu, and the last option is to clear the fields.  It will take all of the information out of the form, but it will also clear out the radio buttons.  I hope that this helps!  Have a great day!

  • "Read context" radio button  not found in ECCEHP4 version

    Hello friends,
                         I am new to webdynpro abap.
                         In SE80 when i click on "webdynpro wizard" button in menubar, i can not see the "Read Context" radio button. We are using ECCEHP4 version. So anyone can please tell what to do.
    Regards,
    Mihir

    Hi Mihir,
    When you open the Code wizard there will be two tabs 1- Context 2-General.
    In context there will be a field Node, by using F4 you can choose your context node and Read it by selecting the Read Radio button under this Input field.
    Please revert us if you are still not able to read the context node.

  • Values of checkboxes and radio buttons not recognised

    Hi folks,
    I have a bit of a strange problem and I'm hoping you can help shed some light.
    Basically I have a form with various elements in it, some of which seem to have a problem telling my pl/sql code what their values are. The culprits seem to be radio buttons and check boxes. Now those are individual items created with the wizard within a specific section if the outcome is different from sql created form elements in tables.
    The radio buttons is one field, let's call it :P100_RADIO which returns either 'AB', 'CD' or 'EF'. The checkbox, let's call it :P100_CHECKBOX is just one checkbox returning the value 'Y' if it's checked.
    after submit, I have a process which among other things checks the value returned by those two elements to set a variable v_paid either as 'Y' or 'N'
    as a small summary of what I'm trying to do, here's a code snippet:
    v_checkbox varchar2(1);
    v_paid varchar2(1);
    begin
    v_checkbox := :P100_CHECKBOX;
    if v_checkbox is not null AND :P100_RADIO = 'CD' THEN
      v_paid := 'Y';
    else
      v_paid := 'N';
    end if;
    end;If I submit my form I get the error message
    "ORA-06502: PL/SQL: numeric or value error: character to number conversion error"If I change the condition to v_checkbox is not null only, I get the same error
    If I change it to v_checkbox != '' I don't get an error but v_paid is set with 'N'
    If I change it to v_checkbox = 'Y', I get the same error again
    If I change it to *:P100_RADIO = 'CD'* only, I get the error as well.
    I also mistakenly tried v_checkbox is null and it submitted fine, though the value of v_paid was still 'N'
    I've tried changing the varchar2(1) to something greater, up to varchar2(4000) but that didn't make any difference.
    So I seem to understand there's a discrepancy of types somewhere but I can't work out where or how to change that. In my code an insert is performed after the if statement and the value of :P100_RADIO is added to the table with the expected value.
    After looking at the source of the page produced by Apex, I also tried to replace :P100_CHECKBOX with :P100_CHECKBOX_0 but that didn't make a difference either. It's possible Apex thinks :P100_RADIO and :P100_CHECKBOX are supposed to return some sort of arrays but just why it would just return a string in an sql statement beats me.
    The worst thing is, I'm fairly certain the code worked the first time I implemented it. So if anyone has any idea of what's going on that would be quite helpful. As always, I have a nagging suspicion it's a silly tiny mistake somewhere I just can't see.
    Thanks folks :)

    okay here's the code for the whole procedure. Some variable names have been changed but it's otherwise the same code:
    DECLARE
    v_total_cost     NUMBER(10,2);
    v_deposit        NUMBER(10,2);
    v_remaining      NUMBER(10,2);
    v_payment_type   varchar2(2);
    v_checkbox       varchar2(4000);
    v_user           varchar2(4000);
    v_bok_paid       varchar2(1);
    v_msg            varchar2(4000);
    BEGIN
    v_total_cost     := :P100_COST;
    v_deposit        := :P100_DEPOSIT;
    v_remaining      := v_total_cost - v_deposit;
    v_payment_type   := :P100_PAYMENT_AMOUNT;
    v_checkbox       := :P100_CHECKBOX;
    v_user           := :APP_USER;
    --wwv_flow.debug('before condition');
    if v_checkbox != '' AND :P100_RADIO = 'CD' THEN
      v_bok_paid := 'Y';
    else
      v_bok_paid := 'N';
    end if;
    --wwv_flow.debug('after condition');
    IF v_payment_type  = 'D' THEN
    :P100_AMOUNT_TO_PAY := :P100_DEPOSIT;
    INSERT INTO SAL_TRANSACTIONS (TRA_BKG_ID, TRA_COST, TRA_TOTAL,TRA_TYPE, TRA_PAID, TRA_PAY_TYPE, TRA_DATE, TRA_MANUAL, TRA_USER)
    VALUES (:P100_BKG_ID, 0, v_deposit, v_payment_type, v_bok_paid, :P100_RADIO, SYSDATE, v_checkbox, v_user);
    INSERT INTO SAL_TRANSACTIONS (TRA_BKG_ID, TRA_COST, TRA_TOTAL,TRA_TYPE, TRA_PAID, TRA_PAY_TYPE, TRA_DATE, TRA_MANUAL, TRA_USER)
    VALUES (:P100_BKG_ID, 0, v_remaining, 'L','N', null, SYSDATE, v_checkbox, v_user);  
    ELSIF v_payment_type  = 'F' THEN
    :P100_AMOUNT_TO_PAY := :P100_COST;
    INSERT INTO SAL_TRANSACTIONS (TRA_BKG_ID, TRA_COST, TRA_TOTAL,TRA_TYPE, TRA_PAID, TRA_PAY_TYPE, TRA_DATE, TRA_MANUAL, TRA_USER)
    VALUES (:P100_BKG_ID, 0, v_total_cost, :P100_PAYMENT_AMOUNT, v_bok_paid, :P100_RADIO, SYSDATE, v_checkbox, v_user);
    END IF;
    :P100_TRANSACTION_FLAG := '1';
    if v_bok_paid = 'Y' then
    v_msg := '<div>Message clipped</div>';
    --send confirmation email
    GLO_CORRESPONDANCE.proc_corr_controller(
    :P100_BOOKING_MEMBER_ID,
    :P100_BKG_ID,
    null,
    v_msg,
    'E',
    'Payment confirmation',
    null
    end if;
    END;Thanks :)

  • Radio Buttons not working in Mozilla firefox

    Hi,
    I want one solution, i have done some enhancement in my application in which if we click on radio button(Yes) the corresponding fields(select list,shuttle fields will be shown) or else it will be hidden. My problem here is this works fine in IE but it does not work with Mozilla Firefox, can anybody please help me to sort my problem.
    Thanks,
    Dil
    Edited by: dil84 on Nov 18, 2009 2:29 AM

    Thanks for your interest. Here is a page where it does not work: http://foundation.zurb.com/docs/components/switch.html . Radio button is too small (only click on the top right corner can toggle the button).

  • Why are my radio buttons not renaming in pages spawned from a hidden template?

    Hi Everyone,
    I am new to PDF forms, and have never before tried to use JavaScripts. However, I have been able to learn a lot and I have followed many threads and have almost accomplished what I want, but have hit a block. I don't understand the JavaScript well enough to locate my problem. Your help is greatly appreciated.
    SYSTEM SPECS: Adobe Acrobat X Pro  Mac OS 10.8.5
    WHAT I WANT: To create a multi-page (100 pages) form for grading student assignments. Each page must have the same fields, but as each page belongs to a new student, it needs to have different values in the fields on different pages. Each page has 4 questions to score, with 4 score possibilities for each question (0, 1, 2, 3 points), and so only one score should be able to be selected per question.
    WHAT I HAVE DONE, following the directions on this thread (Re: Multiple pages form) ):
    1) Created a form with a field for student name and 4 sets of radio buttons (Labeled Questions 1-4, with score choices 0-3).
    2) Placed a button at the bottom of the page that will spawn a new page and rename fields.
    3) Defined this page as a template.
    4) Spawned a page.
    5) Made the template "hidden."
    THE PROBLEM: Steps 1-4 above work perfectly--as long as the template (named "Form") is visible, when I click the button, a new page generates and the student name field renames the fields on Page 2 to "P2.Form.Student ID #" and the radio buttons rename to "P2.Form.Question 1" etc. Each time I press the button, it renames everything appropriately.
    However, if I hide the template, then when I click the button on page 1, the fields on Page 2 are renamed to "P1.Form.StudentID ##1." AND THE RADIO BUTTONS DO NOT RENAME. They get the name "P1.Form.Question 1" etc. So the student name field did rename in a way that allows me to enter a new name on each page, but it isn't actually reflecting that I am on page 2, and as for the radio buttons, at that point, I cannot enter different scores on different pages because they are all part of the same radio button grouping.
    If I use check boxes, they rename similarly to the student ID field, but I don't want to use check boxes because I want to return one possible score value for each question for tabulating the data. I don't want to leave the template visible because when I distribute this form to other graders, they may enter values into the template page without realizing it, and then when the spawn forms they will have wrong data already entered.
    Here is the script that I have set as the button's Mouse Up script:
    // Specify the name of the template
    var template_name = "Form";
    // Get a reference to the template
    var t = getTemplate(template_name);
    // Add a new page based on the template
    if (t !== null) {
        t.spawn({
        nPage: numPages,      // Add the new page to end of document
        bOverlay: false,      // Create a new page, not an overlay
        bRename: true         // Rename the fields
    } else {
       app.alert("The template named \'" + template_name + " does not exist in this document.", 1);
    Thanks for your help

    Hi again GKaiseril,
    If you have the time, would you be able to tell me how to do that? I tried just changing the page number of the template page to zero, but I get the error "Please enter a starting value of at least 1."  I definitely noticed that all of the discussions about similar subject do all say to somehow put the first page of the form before the template and then hide the template, but I don't think that I know how to do that. I read your response on this discussion "Re: Self replicating form pages in Acrobat Pro 9 (Win XP)" before I ever started this discussion, but have to admit that I can't figure out how to follow your advice "When I create a from that uses a template, I create the template and then spawn the 1st page of the form before the template and then work out the scripting for the 1st page and template and then hide the template."
    Thanks

  • Radio Buttons Not Appearing in Quiz

    I created a quiz in Captivate 5.5 then upgraded to Captivate 6.  When I run the quiz locally, the radio buttons appear next to the possible answers and everything works fine.  When I run the quiz in our LMS, the radio buttons do not appear.  Anyone else having this issue or have any insight?

    Hi Anjaneai,
    For some clarification, we are loading the Captivate 6 quiz swf into another swf.  When we play the quiz swf alone, the radio buttons appear.  However when we play the quiz swf within the other swf, the radio buttons disappear.  To reiternate, we loaded Captivate 5.5 quiz swfs into another swf and the buttons appeared.  Do you what the difference between the Captivate versions could be or have any insight?
    We've already looked into some of your suggestions (the Flash player is not the issue) and am looking into your other suggestions.  
    Below is the screen shot you requested.
    Thanks again for your assistance.

  • Radio buttons not working after resetting

    I have a form with two radio buttons for each question.  Each question is in its own frame "Q1," "Q2," etc.  I also have a btn_Reset created to reset the form, i.e. reset all radio buttons and return to "Q1" frame.  All buttons work as they should, including resetting the radio buttons, however, once I reset the radio buttons and return to "Q1" to start over, the actions associated with each radio button upon clicking on them do not work.  Here's my code:
    //Frame "Begin"
    gotoAndStop("Q1")  //I also define my variables in frame "Begin"
    //Frame "Q1"
    rbtn_YESQ1.onPress = function():Void
         attachMovie("btnReset", "btn_Reset", 1, {_x:0, _y:0});
         btn_Reset.onRelease = function():Void
              xfa.host.resetData("radioGroupQ1"); //this resets my radio buttons in "Q1" frame
              gotoAndPlay("Begin");
    //Once I return to "Begin" frame, my variables are reset to their initial value since that's where I originally defined them, and I go to "Q1" because that's what the code in frame "Begin" says.  Here is where I click on rbtn_YESQ1 again and even though the button does fill in, it does not attach btn_Reset to the stage as defined by rbtn_YESQ1.onRelease function.
    What am I doing wrong?

    Here's the full code for the radio buttons:
    ////Code in frame "Q1"////
    //rbtn_YESQ1 code
    yesListener = new Object();
    yesListener.click = function (evt)
        mc_EmptyReset.attachMovie("btnReset", "btn_Reset", 1);
        mc_EmptyReset.btn_Reset.onRelease = function():Void
            //Places "Reset Confirmation" window on top
            attachMovie("mcResetConfirmation", "mc_ResetConfirmation", getNextHighestDepth(), {_x:24.0, _y:56.0});
            resetConfirmationTween = new Tween(mc_ResetConfirmation, "_alpha", easeNone, 0, 100, .5, true);
            mc_ResetConfirmation.btn_No.onRelease = function():Void
                mc_ResetConfirmation.btn_No.enabled = false;
                mc_ResetConfirmation.btn_Yes.enabled = false;
                resetConfirmationTween.yoyo();
                resetConfirmationTween.onMotionFinished = function():Void
                    removeMovieClip(mc_ResetConfirmation);
            mc_ResetConfirmation.btn_Yes.onRelease = function():Void
                mc_ResetConfirmation.btn_No.enabled = false;
                mc_ResetConfirmation.btn_Yes.enabled = false;
                resetConfirmationTween.yoyo();
                resetConfirmationTween.onMotionFinished = function():Void
                    removeMovieClip(mc_ResetConfirmation);
                    gotoAndPlay("Begin");
    rbtn_YESQ1.addEventListener("click", yesListener);
    //Same code as above btn_NOQ1
    noListener = new Object();
    noListener.click = function (evt)
         //same code as above...
    rbtn_NOQ1.addEventListener("click", noListener);
    ////Code in frame "Begin"////
    gotoAndStop("Q1");

  • Styling input radio buttons not working in linux firefox

    On linux we cannot use radio buttons switch from foundation zurb. Look at this issue: https://github.com/zurb/foundation/issues/1615#issuecomment-14593962.

    Thanks for your interest. Here is a page where it does not work: http://foundation.zurb.com/docs/components/switch.html . Radio button is too small (only click on the top right corner can toggle the button).

  • Radio button not visble

    Within Captivate 7, I'm able to view radio buttons contained within quizzes from Captivate; however, once the file is published and hosted on the LMS the radio buttons disappear. There are no objects on the slide and the master slide background is being used on the stage. Any suggestions?

    Somewhat related, my radio buttons look fine authoring and previewing but once published and pushed to SCORM Cloud, they are cut off on the right.
    I looked through all of the objects in the Object Style Manager of the Themes and nothing radio-button related there. I used the indent capability of the choices on the master slide for the MC questions but it only widened the gap between the choice label (A, B, C...) and the choice text, not the gap between the radio button and the choice label. Was just going to post on this but may be same issue as yours?

  • Radio button not lining up

    Somehow my radio button are not lining up with my text that
    is following them. I have the following html:
    <input type="radio" id="pollType2" name="pollType"
    value="deterministic" /><span
    class="radioTxt">Factual</span></input>
    My CSS looks like this, but does not seem to do anything.
    What am I missing?
    .radioTxt {padding: 0 5px 10px 2px;}

    Hi again.
    Thank you for your responses.  I was putting together a small application to show the problem, and was able to recreate it.
    Then I noticed that I was reading the radio button outside of any structure, thereforfe it was pulling in an undefined value before the user clicked 'start'.
    I checked my 'real' code and that appears to be the problem.
    Once I placed the 'read' of the radio button inside a control structure, so that I defined when it was read, all is good.
    Thanks,
    Jeff

  • Primary Key radio button not working

    Hello
    I created a toplink probject on my MacOS X 10.4.6 machine using JDev 10.3.1.0.4 SU2.
    It works well, but when I click the toplink map, then I click my definition under structure to the right.
    I have a view with:
    Associated table: <popup>
    Primary keys:
    <radio button list>
    Sequencing:
    The problem is located at the radio button list of the primary keys, if I click a radio button, the XML description file is updated, but I visualy see nothing, all radio buttons are always not selected.
    As a workaround, I click the pk I want, and then I verify the XML file for correct selection.
    Hope it will be fixed.
    Regards
    Kuon

    Found a new workarround.
    Changing look from MacOS X to Oracle.
    But I hope it will get fixed, MacOS look is better with text anti-aliasing.

  • Radio buttons not working in Opera 9.25

    Radio buttons which I have created in a form work fine with
    Internet Explorer, Firefox and Safari, but disappear when I open
    the form in Opera 9.25. All I see are the words next to the space
    where the buttons should be. Is there something special I need to
    do for Opera to make them show?

    Does the page validate?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "ReneeFS" <[email protected]> wrote in
    message
    news:fp75c2$5ht$[email protected]..
    > Radio buttons which I have created in a form work fine
    with Internet
    > Explorer,
    > Firefox and Safari, but disappear when I open the form
    in Opera 9.25. All
    > I
    > see are the words next to the space where the buttons
    should be. Is there
    > something special I need to do for Opera to make them
    show?
    >
    > <input type="radio" name="radio" id="Visa_yes"
    value="Visa_yes" />
    > Yes
    > <input type="radio" name="radio" id="Visa_no"
    value="Visa_no" />
    > No </label>
    >

  • ValueChangeListener in Radio Button not acting after first time

    Hi,
    I am using ADF-BC-JSF in Jdev 10.1.3.3. I have a page on which there are 2 radio buttons which show blank at first. As soon as a user selects a radio button, the valueChangeListener calls up a method in the backing bean that opens a dialog for the user. User enters some text in to the dialog and clicks OK after which the window closes. If the user clicks Cancel on the dialog page, the window is still closed but radio button value is reset to blank through javascript. the problem is that it works only first time. second time it tries to autosubmit but only the constructor of the backing bean is called and not the actual function to open the window. Following is the code snippet that may be helpful.
    Radio Buttons
    <af:selectOneRadio value="#{bindings.SP11WarrantDetailsViewMetallurgistReviewStatus.inputValue}"
    layout="horizontal"
    id="metallurgistRadioBtn"
    autoSubmit="true"
    valueChangeListener="#{UploadDownloadBean.exampleOpenDialog}"
    disabled="#{ !UserInfo.metallurgist || bindings.SP11WarrantDetailsViewMetallurgistReviewStatus !=''}">
    <af:validator binding="#{bindings.SP11WarrantDetailsViewMetallurgistReviewStatus.validator}"/>
    <af:selectItem label="Approved" value="Approved"/>
    <af:selectItem label="Rejected" value="Rejected"/>
    </af:selectOneRadio>
    Function to Open the Window
    public void exampleOpenDialog(ValueChangeEvent valueChangeEvent)
    // Add event code here...
    FacesContext context = FacesContext.getCurrentInstance();
    // Create the dialog UIViewRoot
    ViewHandler viewHandler = context.getApplication().getViewHandler();
    UIViewRoot dialog = viewHandler.createView(context,"/sp11/warrant/MetallurgistNotes.jspx");
    HashMap properties = new HashMap();
    AdfFacesContext afContext = AdfFacesContext.getCurrentInstance();
    afContext.launchDialog(dialog,
    null, // not launched from any component
    null, // no particular parameters
    true, //show in dialog
    properties);
    Javscript for resetting the Radiob button
    function closeWindowOnCancel()
    if(parent.window.opener.document.getElementById("notesValueHolder").value == '' )
    parent.window.opener.document.getElementsByName("metallurgistRadioBtn")[0].checked = false;
    parent.window.opener.document.getElementsByName("metallurgistRadioBtn")[1].checked = false;
    Please suggest what can be the possible cause.
    Regards,
    Neeraj

    Hi,
    I am using ADF-BC-JSF in Jdev 10.1.3.3. I have a page on which there are 2 radio buttons which show blank at first. As soon as a user selects a radio button, the valueChangeListener calls up a method in the backing bean that opens a dialog for the user. User enters some text in to the dialog and clicks OK after which the window closes. If the user clicks Cancel on the dialog page, the window is still closed but radio button value is reset to blank through javascript. the problem is that it works only first time. second time it tries to autosubmit but only the constructor of the backing bean is called and not the actual function to open the window. Following is the code snippet that may be helpful.
    Radio Buttons
    <af:selectOneRadio value="#{bindings.SP11WarrantDetailsViewMetallurgistReviewStatus.inputValue}"
    layout="horizontal"
    id="metallurgistRadioBtn"
    autoSubmit="true"
    valueChangeListener="#{UploadDownloadBean.exampleOpenDialog}"
    disabled="#{ !UserInfo.metallurgist || bindings.SP11WarrantDetailsViewMetallurgistReviewStatus !=''}">
    <af:validator binding="#{bindings.SP11WarrantDetailsViewMetallurgistReviewStatus.validator}"/>
    <af:selectItem label="Approved" value="Approved"/>
    <af:selectItem label="Rejected" value="Rejected"/>
    </af:selectOneRadio>
    Function to Open the Window
    public void exampleOpenDialog(ValueChangeEvent valueChangeEvent)
    // Add event code here...
    FacesContext context = FacesContext.getCurrentInstance();
    // Create the dialog UIViewRoot
    ViewHandler viewHandler = context.getApplication().getViewHandler();
    UIViewRoot dialog = viewHandler.createView(context,"/sp11/warrant/MetallurgistNotes.jspx");
    HashMap properties = new HashMap();
    AdfFacesContext afContext = AdfFacesContext.getCurrentInstance();
    afContext.launchDialog(dialog,
    null, // not launched from any component
    null, // no particular parameters
    true, //show in dialog
    properties);
    Javscript for resetting the Radiob button
    function closeWindowOnCancel()
    if(parent.window.opener.document.getElementById("notesValueHolder").value == '' )
    parent.window.opener.document.getElementsByName("metallurgistRadioBtn")[0].checked = false;
    parent.window.opener.document.getElementsByName("metallurgistRadioBtn")[1].checked = false;
    Please suggest what can be the possible cause.
    Regards,
    Neeraj

  • Radio buttons not active

    Two courses built in Captivate 3 have radio buttons that sometimes are inactive (for some users that is but not all).  The users are telling me that they can't click on either answer button.   And if they click Submit it tells them "You did not answer this question completely".  We are deploying this in Learn.com as AICC.  What could be causing this?

    Try rebooting your Z10, and then connect again to the PC. and try the sync.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

Maybe you are looking for

  • PDF Export from the JRC

    Looking for two possible fixes. First one: I am exporting crystal reports to PDF from the JRC.  I have a report that contains sub-reports in the group header which when displayed, span multiple pages.  In the designer, it starts on a page and then wr

  • After updating to iOS 8.2 calls automatically are routed to mailbox

    Hi After updating to iOS 8.2. my iPhone 6 rings only once and after that all calls are routed to the mailbox. I already rebooted by holding on/off and home. the problem is still there. any idea? thx Juergen

  • Problem naming a method

    Hi, In a part of my project I have an defined a class A. A has several attributes, classified in two groups: fix ones and evolving ones. To reflect this in data base I have two different tables - FixA: fix data of A. PK is A's id. - EvoA: evolutive d

  • How to delete buttons in region buttons in oracle apex?

    how to delete buttons in region buttons in oracle apex? i have created unwanted buttons...so i have to delete... but i dont know how to do this?

  • One layer as the mask of another

    I have these video with both regular and its mask in QuickTIme. I placed both on timeline as 2 separate layers. How can I make one layer being the mask of another? Thanks for the help,