Make TextField visible on radio select

I'm new to creating forms in LiveCycle, and hardly good at creating the in Acrobat Pro, and am in need of assistance.
In this form I have two radio buttons. I just now got them to work as needed (aternating between one or the other), but i'm looking to add some code. When the user selects the Renew Radio, I want the Memebr ID TextField to become visible, Otherwise the Member ID TextField should remain hidden. I don't know how to code and was hoping someone could help with that.
Also, I'm having a problem with the Member ID TextField. For some reason it's huge. When I try to match it to the size of the radios the text drops from view. Font size is the same for all three on that row. Also, when viewed by the user, Member ID is not at the same line ad the radio options. Can these be fixed? I'm too inexperienced in this and have spent hours trying to hack it.
Thanks for you attention and time,
D

1. I put code on the RadioButton group to test its value and show/hide the membership ID field.
2. You had changed the font size for the text in the radio button to 18 pts as well as the text field. The fotn size of the actual radio button itself was left at 10...thats why it looked so bad. I merely changed the font size of all text on the line to 14 (to match the rst of the form), then on the radio buttons I changed the font size of the button (in the object palette under field). Then I resized the ID field to match th eothers.
3. I saved the form as dynamic.
4. Your images are not showing up online because you have a direct reference to them (d:/......). When th eofrm loads on someone elses machine they will not have the same structure as well as the actual image file. To fix this you can either put the image on your web server and use a URL instead of a file reference. Then when the file loads on someone else's machine the biewer will retrieve the image, or you can still point to the one on your hard drive but embed it in the PDF (checkbox below the URL setting).
Paul

Similar Messages

  • Make Table visible after button is clicked

    Hi,
    How to make a table visible only after a button is clicked on the screen?
    I have two input fields and based on that data we click a search button and data is displayed.
    How to make the table  visible only after the button is clicked.
    Regrads

    hi ,
    u proceed as follows :
    1 bind visible property ur table to a context attribute of type wdui_visibility
    2 set the default value to '01' , making it '01 ' means initially ur UI wud be invisible
    3 in the onActionEvent method , when button is clicked , read the context attribute
    4 set its value to '02' using set_attribute method , u can do it using code wizard
    DATA lo_nd_cn_all TYPE REF TO if_wd_context_node.
         DATA lo_el_cn_all TYPE REF TO if_wd_context_element.
         DATA ls_cn_all TYPE wd_this->element_cn_all.
         DATA lv_invisible LIKE ls_cn_all-invisible.
    *    navigate from <CONTEXT> to <CN_ALL> via lead selection
         lo_nd_cn_all = wd_context->get_child_node(
         name = wd_this->wdctx_cn_all ).
    *    get element via lead selection
         lo_el_cn_all = lo_nd_cn_all->get_element(  ).
    *    get single attribute
         lo_el_cn_all->set_attribute(
           EXPORTING
             name  =  `INVISIBLE`
             value = '02' ).
    set attribute INVISBLE under context node cn_All to visible
    5 press control + f7 , use the radio button read context node /attribute
    for visible / invisble , instead of setting attribute to '01' and '02' , u can do it dis way
    wd_context->set_attribute( name = '<attribute name>' value = if_wdl_core=>visibility_visible )." to make it visible.
    wd_context->set_attribute( name = '<attribute name>' value = if_wdl_core=>visibility_none ). "to make it invisible
    this way u wud be able to achieve ur desired functionality
    regards,
    amit

  • Realtek network card seems to be disappeared. how can i make it visible again for the OS?

    i can't access my LAN card. somehow it is disappeared. how can i make it visible again for the OS? my OS is windows 7. thanks very much for your help

    right click on the button bar, then select "customize toolbar", drag any button you like into the toolbar and you're done!
    Diego

  • How to make a rectangle around activeDocument.selection?

    Hi,everyone!
    Recently I met a awful problem. I want to make a rectangle around current selection, but Not success.
    Could you help me or give some clues? Thanks!

    Try the following code.
    Cheers Daniel
    boundingbox();
    function boundingbox()
        // zet nulpunt linksonder
        app.activeDocument.pageOrigin = Array(0,0);
        app.activeDocument.rulerOrigin = Array(0,0);
        // set variable
        var breedte = app.activeDocument.width;
        var hoogte = app.activeDocument.height;
        var doc = app.activeDocument;
        // omrekenfactor
        var omf = 2.834645;
        // maak lijnkleur aan
        var newRGBColor = new RGBColor();
        newRGBColor.red = 0;
        newRGBColor.green = 255;
        newRGBColor.blue = 0;
        var black = new GrayColor();
        black.gray = 100;
        var layercheck = 0;
        var targetDocument = app.activeDocument;
        var layerCount = targetDocument.layers.length;
        var a=1;
        for (var i=1 ; i < 2; i++) {
            if (a==1){var txt = ''; var layname = 'BB';};
            var layercheck = 0;
            for (u = layerCount -1; u >= 0; u--){
                targetLayer = targetDocument.layers[u];
                var layerName = new String (targetLayer.name);
                    if (layerName.indexOf(layname) == 0){
                    targetDocument.layers[u].visible= true;
                    targetDocument.layers[u].locked= false;
                    var layercheck = 1;
            if (layercheck == 0){
                newlayer = documents[0].layers.add();
                newlayer.name = (layname);
                newlayer.color = newRGBColor;   
        alignType = 'top';
        mySelection = activeDocument.selection;
            if (mySelection.length > 0) {
                anchorBounds = getPosition(mySelection[0]);
                var artLayer = doc.layers['BB'].groupItems.add();
                targetDocument.layers['BB'].preview = false;
                var breedte = bnds[2] - bnds[0];
                var hoogte = bnds[1] - bnds[3];
                var rect = artLayer.pathItems.rectangle ((bnds[1] + (20*omf)),(bnds[0] - (20*omf)), breedte + (40*omf), hoogte + (40*omf));
                rect.filled = false;
                rect.stroked = false;
            } else {
                anchorBounds = getDocPosition();
                var doc = app.activeDocument;
                var omtrekartwork = app.activeDocument.geometricBounds;
                var leftartwork = omtrekartwork[0];
                var topartwork = omtrekartwork[1];
                var rightartwork = omtrekartwork[2];
                var bottomartwork = omtrekartwork[3];
                var origin = doc.rulerOrigin;
                var leftpage    = -origin[0];
                var toppage    = -origin[1] + doc.height;
                var rightpage    = -origin[0] + doc.width;
                var bottompage    = -origin[1];
                var centerxpage    = -origin[0] + doc.width/2;
                var centerypage    = -origin[1] + doc.height/2;
                var bleedleft = leftpage - leftartwork;
                var bleedright = rightartwork - rightpage;
                var bleedtop = topartwork - toppage;
                var bleedbottom = bottompage - bottomartwork;
                var breedteartwork = rightpage - leftpage;
                var hoogteartwork = toppage - bottompage;
                if (bleedleft <= 0 && bleedright <= 0 && bleedtop <= 0 && bleedbottom <=0){
                        var artLayer = doc.layers['BB'].groupItems.add();
                        targetDocument.layers['BB'].preview = false;
                        var rect = artLayer.pathItems.rectangle ((toppage + (20*omf)),(leftpage - (20*omf)), (breedteartwork + (40*omf)), (hoogteartwork + (40*omf)));
                        rect.filled = false;
                        rect.stroked = false;
                } else {
                        if    (bleedleft >= bleedright){
                            var bleedx = bleedleft + (20*omf);
                        } else {
                            var bleedx = bleedright + (20*omf);
                        if    (bleedbottom >= bleedtop){
                            var bleedy = bleedbottom + (20*omf);
                        } else {
                            var bleedy = bleedtop + (20*omf);
                        var artLayer = doc.layers['BB'].groupItems.add();
                        targetDocument.layers['BB'].preview = false;
                        var rect = artLayer.pathItems.rectangle ((toppage + bleedy),(leftpage - bleedx), (breedteartwork + (2*bleedx)), (hoogteartwork + (2*bleedy)));
                        rect.filled = false;
                        rect.stroked = false;
    function getBounds(obj) {
        var vbounds = new Array();
        if( obj.typename == 'TextFrame' ) {
            objcopy=obj.duplicate().createOutline();
            vbounds = objcopy.visibleBounds;
            objcopy.remove();
        else if( (obj.typename == 'GroupItem') && !obj.clipped ) {
            vbounds = getBounds(obj.pageItems[0]);
            for( n=1; n<obj.pageItems.length; n++  ) {
                vgb = getBounds(obj.pageItems[n]);
                if( vbounds[0] > vgb[0] ) vbounds[0] = vgb[0];
                if( vbounds[1] < vgb[1] ) vbounds[1] = vgb[1];
                if( vbounds[2] < vgb[2] ) vbounds[2] = vgb[2];
                if( vbounds[3] > vgb[3] ) vbounds[3] = vgb[3];
        else if( (obj.typename == 'GroupItem') && obj.clipped && (obj.pageItems.length > 1) ) {
            vbounds = getBounds(obj.pageItems[0]);
            cvgb = getBounds(obj.pageItems[1]);
            objleft = cvgb[0];
            objtop = cvgb[1];
            objright = cvgb[2];
            objbottom = cvgb[3];
            obj.pageItems[0].stroked ? so = 0 : so = 1;
            for( n=so; n<obj.pageItems.length; n++ ) {
                cvgb = getBounds(obj.pageItems[n]);
                if( objleft > cvgb[0] ) objleft = cvgb[0];
                if( objtop < cvgb[1] ) objtop = cvgb[1];
                if( objright < (cvgb[2]) ) objright = cvgb[2];
                if( objbottom > (cvgb[3]) ) objbottom = cvgb[3];
            if( vbounds[0] < objleft ) vbounds[0] = objleft;
            if( vbounds[1] > objtop ) vbounds[1] = objtop;
            if( vbounds[2] > objright ) vbounds[2] = objright;
            if( vbounds[3] < objbottom ) vbounds[3] = objbottom;
        else {
            vbounds = obj.visibleBounds;
        return vbounds;
    function getPosition(obj) {
        var b = new Array();
        bnds = getBounds(obj);
        b['left']    = bnds[0];
        b['top']    = bnds[1];
        b['right']    = bnds[2];
        b['bottom']    = bnds[3];
        b['centerX']    = bnds[0] + (bnds[2]-bnds[0])/2;
        b['centerY']    = bnds[1] - (bnds[1]-bnds[3])/2;
        return b;
    function getDocPosition() {
        var b = new Array();
        doc = activeDocument;
        var origin = doc.rulerOrigin;
        b['left']    = -origin[0];
        b['top']    = -origin[1] + doc.height;
        b['right']    = -origin[0] + doc.width;
        b['bottom']    = -origin[1];
        b['centerX']    = -origin[0] + doc.width/2;
        b['centerY']    = -origin[1] + doc.height/2;
        return b;

  • Marquee and pen tools do not leave a visible track until selection is finished

    When usinf the pen tool or the rectangular marquee tool and draging the path in invisible and does not appear until the "make work path" instruction is selected. Yhe use of the pen tool as an invible line pretty much renders the pen tool as usless. I have obviously turned something off. How do I fix this problem. Very frustrating. I have reinstalled prhoshop CS4 (3) times, same situation.

    Found the answer in another thread. If pen tool path is not visible, then un checking "open gl" in edit>preferences>performance [GPU Settings] solves the problem.
    Thank you to anyone who endevours to answer this question.

  • Display panel header based on radio selection

    hi i have a stiuation where i what to display panel header based on radio button selection for example if the value of radio is DSO it must dispaly all under <af:panelHeader,am in jdeveloper 11.1.1.6.0
    i have this radio
    <af:selectOneRadio value="#{bindings.Paymenttype.inputValue}"
                                       label="#{bindings.Paymenttype.label}"
                                       required="#{bindings.Paymenttype.hints.mandatory}"
                                       shortDesc="#{bindings.Paymenttype.hints.tooltip}"
                                       id="sor1" autoSubmit="true"
                                       binding="#{pageFlowScope.addMember.dpayment}">
                      <f:selectItems value="#{bindings.Paymenttype.items}"
                                     id="si10"/>
                    </af:selectOneRadio>
    and my panel header is
                  <af:panelHeader text="Bank Details" id="ph6"
                                   visible="#{bindings.Paymenttype.inputValue eq &quot;DRO&quot;}"
                                 partialTriggers="sor1"
                                  inlineStyle="width:556px; border-color:Blue; border-style:ridge;">Edited by: adf009 on 2013/02/21 2:44 PM
    Edited by: adf009 on 2013/02/21 2:48 PM
    Edited by: adf009 on 2013/02/21 2:56 PM

    i have try that but it does not display panel header based on radio selection
    <af:selectOneRadio value="#{bindings.Paymenttype.inputValue}"
                                       label="#{bindings.Paymenttype.label}"                                  
                                       shortDesc="#{bindings.Paymenttype.hints.tooltip}"
                                       id="sor1" autoSubmit="true"
                                       binding="#{pageFlowScope.addMember.dpayment}"
                                       immediate="true">
                      <f:selectItems value="#{bindings.Paymenttype.items}"
                                     id="si10"/>
                    </af:selectOneRadio>
                    <af:panelFormLayout id="pfl7" labelAlignment="start">
                      <af:inputText value="#{bindings.Accounthldr.inputValue}"
                                    label="#{bindings.Accounthldr.hints.label}"
                                    required="#{bindings.Accounthldr.hints.mandatory}"
                                    columns="20"
                                    maximumLength="#{bindings.Accounthldr.hints.precision}"
                                    shortDesc="#{bindings.Accounthldr.hints.tooltip}"
                                    id="it22"
                                    visible='#{bindings.Paymenttype.inputValue eq "DRO"}'>
                        <f:validator binding="#{bindings.Accounthldr.validator}"/>
                      </af:inputText>
                      <af:inputText value="#{bindings.Bankaccountnumber.inputValue}"
                                    label="#{bindings.Bankaccountnumber.hints.label}"
                                    required="#{bindings.Bankaccountnumber.hints.mandatory}"
                                    columns="20"
                                    maximumLength="#{bindings.Bankaccountnumber.hints.precision}"
                                    shortDesc="#{bindings.Bankaccountnumber.hints.tooltip}"
                                    id="it20"
                                    visible='#{bindings.Paymenttype.inputValue eq "DRO"}'>
                        <f:validator binding="#{bindings.Bankaccountnumber.validator}"/>
                        <af:convertNumber groupingUsed="false"
                                          pattern="#{bindings.Bankaccountnumber.format}"/>
                      </af:inputText>
                      <af:selectOneChoice value="#{bindings.Bankaccounttype.inputValue}"
                                          label="#{bindings.Bankaccounttype.label}"
                                          required="#{bindings.Bankaccounttype.hints.mandatory}"
                                          shortDesc="#{bindings.Bankaccounttype.hints.tooltip}"
                                          id="soc12"
                                         visible='#{bindings.Paymenttype.inputValue eq &quot;DRO&quot;}'>
                        <f:selectItems value="#{bindings.Bankaccounttype.items}"
                                       id="si13"/>
                      </af:selectOneChoice>
                      <af:selectOneChoice value="#{bindings.Bankname.inputValue}"
                                          label="#{bindings.Bankname.label}"
                                          required="#{bindings.Bankname.hints.mandatory}"
                                          shortDesc="#{bindings.Bankname.hints.tooltip}"
                                          id="soc13"
                                           visible="#{bindings.Paymenttype.inputValue eq &quot;DRO&quot;}">
                        <f:selectItems value="#{bindings.Bankname.items}"
                                       id="si14"/>
                      </af:selectOneChoice>
                      <af:inputText value="#{bindings.Branchcode.inputValue}"
                                    label="#{bindings.Branchcode.hints.label}"
                                    required="#{bindings.Branchcode.hints.mandatory}"
                                    columns="20"
                                    maximumLength="#{bindings.Branchcode.hints.precision}"
                                    visible="#{bindings.Paymenttype.inputValue==&quot;DRO&quot;}"
                                    shortDesc="#{bindings.Branchcode.hints.tooltip}"
                                    partialTriggers="branchnameId" id="it19">
                        <f:validator binding="#{bindings.Branchcode.validator}"/>
                      </af:inputText>
                      <af:inputComboboxListOfValues id="inputComboboxListOfValues1"
                                                    popupTitle="Search and Select: #{bindings.Branchname.hints.label}"
                                                    value="#{bindings.Branchname.inputValue}"
                                                    label="#{bindings.Branchname.hints.label}"
                                                    model="#{bindings.Branchname.listOfValuesModel}"
                                                    required="#{bindings.Branchname.hints.mandatory}"
                                                    visible="#{bindings.Paymenttype.inputValue==&quot;DRO&quot;}"
                                                    columns="#{bindings.Branchname.hints.displayWidth}"
                                                    shortDesc="#{bindings.Branchname.hints.tooltip}">
                        <f:validator binding="#{bindings.Branchname.validator}"/>
                      </af:inputComboboxListOfValues>
                      <af:inputText value="#{bindings.Paymenttype1.inputValue}"
                                    label="#{bindings.Paymenttype1.hints.label}"
                                    required="#{bindings.Paymenttype1.hints.mandatory}"
                                    columns="#{bindings.Paymenttype1.hints.displayWidth}"
                                   visible="#{bindings.Paymenttype.inputValue==&quot;DRO&quot;}"
                                    maximumLength="#{bindings.Paymenttype1.hints.precision}"
                                    shortDesc="#{bindings.Paymenttype1.hints.tooltip}"
                                    id="it21">
                        <f:validator binding="#{bindings.Paymenttype1.validator}"/>
                      </af:inputText>
                    </af:panelFormLayout>
                  </af:panelFormLayout>
                  <af:panelHeader text="Bank Details" id="ph6"
                                  visible="#{bindings.Paymenttype.inputValue eq &quot;DRO&quot;}"                           
                                  partialTriggers="sor1"
                                  inlineStyle="width:556px; border-color:Blue; border-style:ridge;">
                    <f:facet name="context"/>
                    <f:facet name="menuBar"/>
                    <f:facet name="toolbar"/>
                    <f:facet name="legend"/>
                    <f:facet name="info"/>
                    <af:panelFormLayout id="pfl6"
                                        visible="#{bindings.Paymenttype.inputValue eq &quot;DRO&quot;}"                                  
                                        partialTriggers="sor1"
                                        inlineStyle="width:550px; border-color:Blue; border-style:ridge;">
                      <af:inputText value="#{bindings.Accounthldr.inputValue}"
                                    label="Account Holder Name"
                                    required="#{bindings.Accounthldr.hints.mandatory}"
                                    columns="#{bindings.Accounthldr.hints.displayWidth}"
                                    maximumLength="#{bindings.Accounthldr.hints.precision}"
                                    shortDesc="#{bindings.Accounthldr.hints.tooltip}"
                                    id="it14" partialTriggers="sor1">
                        <f:validator binding="#{bindings.Accounthldr.validator}"/>
                      </af:inputText>
                      <af:selectOneChoice value="#{bindings.Bankname.inputValue}"
                                          label="Bank"
                                          required="#{bindings.Bankname.hints.mandatory}"
                                          shortDesc="#{bindings.Bankname.hints.tooltip}"
                                          id="soc11" partialTriggers="sor1"
                                          immediate="true"
                                          contentStyle="width:190px;">
                        <f:selectItems value="#{bindings.Bankname.items}"
                                       id="si11"/>
                      </af:selectOneChoice>
                      <af:inputText value="#{bindings.Bankaccountnumber.inputValue}"
                                    label="Account Number"
                                    required="#{bindings.Bankaccountnumber.hints.mandatory}"
                                    columns="#{bindings.Bankaccountnumber.hints.displayWidth}"
                                    maximumLength="#{bindings.Bankaccountnumber.hints.precision}"
                                    shortDesc="#{bindings.Bankaccountnumber.hints.tooltip}"
                                    id="it16" partialTriggers="sor1">
                        <f:validator binding="#{bindings.Bankaccountnumber.validator}"/>
                        <af:convertNumber groupingUsed="false"
                                          pattern="#{bindings.Bankaccountnumber.format}"/>
                      </af:inputText>
                      <af:selectOneChoice value="#{bindings.Bankaccounttype.inputValue}"
                                          label="Account Type"
                                          required="#{bindings.Bankaccounttype.hints.mandatory}"
                                          shortDesc="#{bindings.Bankaccounttype.hints.tooltip}"
                                          id="soc10" partialTriggers="si10"
                                          contentStyle="width:190px;">
                        <f:selectItems value="#{bindings.Bankaccounttype.items}"
                                       id="si12"/>
                      </af:selectOneChoice>
                      <af:inputComboboxListOfValues id="branchnameId"
                                                    popupTitle="Search and Select: #{bindings.Branchname.hints.label}"
                                                    value="#{bindings.Branchname.inputValue}"
                                                    label="Branch Name"
                                                    model="#{bindings.Branchname.listOfValuesModel}"
                                                    required="#{bindings.Branchname.hints.mandatory}"
                                                    columns="20"
                                                    shortDesc="#{bindings.Branchname.hints.tooltip}"
                                                    partialTriggers="sor1"
                                                    autoSubmit="true">
                        <f:validator binding="#{bindings.Branchname.validator}"/>
                      </af:inputComboboxListOfValues>
                      <af:inputText value="#{bindings.Branchcode.inputValue}"
                                    label="Branch Code"
                                    required="#{bindings.Branchcode.hints.mandatory}"
                                    columns="#{bindings.Branchcode.hints.displayWidth}"
                                    maximumLength="#{bindings.Branchcode.hints.precision}"
                                    shortDesc="#{bindings.Branchcode.hints.tooltip}"
                                    partialTriggers="branchnameId" id="it18">
                        <f:validator binding="#{bindings.Branchcode.validator}"/>
                      </af:inputText>
                      <af:inputText value="#{bindings.Debitorderdate.inputValue}"
                                    label="Date"
                                    required="#{bindings.Debitorderdate.hints.mandatory}"
                                    columns="#{bindings.Debitorderdate.hints.displayWidth}"
                                    maximumLength="#{bindings.Debitorderdate.hints.precision}"
                                    shortDesc="#{bindings.Debitorderdate.hints.tooltip}"
                                    id="it17" partialTriggers="sor1">
                        <f:validator binding="#{bindings.Debitorderdate.validator}"/>
                      </af:inputText>
                    </af:panelFormLayout>
                  </af:panelHeader>this values are on the same VO
    Edited by: adf009 on 2013/02/21 5:23 PM

  • Can I make a class holding multiple GUI components and make it visible?

    I am implementing an MDI where the different JInternalFrames are filled with a JPanel with components. Since the contents of my screen is dynamically generated, each screen can have multiple Jlabels, JTextFields, etc.
    So I thought, I make a class containing the representation of one row of GUI components on my screen, which is: one JLAbel and 4 JTextFields.
    Here is the code which adds the components to the panel:
    // create panel
    JPanel qpanel = new JPanel();
    qpanel.setLayout(new BoxLayout(qpanel, BoxLayout.Y_AXIS));
    qpanel.add(Box.createVerticalStrut(5));
    //add rows to panel
    for( int i = 0; i < nrRows; i++)
    // qpanel.add(new JLabel("Hello how are you"));
    qpanel.add(new ProcessRow("hello","how","are","you"));
    // add panel to scrollpanel
    this.getViewport().add(qpanel);
    Here is the ProcessRow class:
    public class ProcessRow extends JComponent
    public JLabel rowLabel = null;
    public JTextField myCost = null;
    public JTextField saratogaCost = null;
    public JTextField sapCost = null;
    public JTextField totalCost = null;
    public ProcessRow() {
    super();
    public ProcessRow(String LABEL,
    String DEFAULTCOST,
    String SARATOGACOST,
    String SAPCOST){
    super();
    JLabel rowLabel = new JLabel(LABEL);
    JTextField myCost = new JTextField(DEFAULTCOST, 6);
    JTextField saratogaCost = new JTextField(SARATOGACOST, 6);
    JTextField sapCost = new JTextField(SAPCOST, 6);
    JTextField totalCost = new JTextField(6);
    If I add the label "Hello how are you" directly to the panel, it shows fine but if I use my ProcessRow class, nothing shows.
    How can I make it visible and if not,
    how can I dynamically keep adding all these GUI components without loosing control over the components.
    Thanks,
    Johnny

    Modify your ProcessRow:
    (1) First extends JPanel ( Container, not Component)
    (2) Add Label and TextField to the container
    public class ProcessRow extends JPanel
    public JLabel rowLabel = null;
    public JTextField myCost = null;
    public JTextField saratogaCost = null;
    public JTextField sapCost = null;
    public JTextField totalCost = null;
    public ProcessRow() {
    super();
    public ProcessRow(String LABEL,
    String DEFAULTCOST,
    String SARATOGACOST,
    String SAPCOST){
    super();
    JLabel rowLabel = new JLabel(LABEL);
    JTextField myCost = new JTextField(DEFAULTCOST, 6);
    JTextField saratogaCost = new JTextField(SARATOGACOST, 6);
    JTextField sapCost = new JTextField(SAPCOST, 6);
    JTextField totalCost = new JTextField(6);
    // add everything to the container.
    add(rowLabel);
    add(myCost);
    add(sapCost);
    add(totalCost);
    }

  • Make subform visible, content doesn't show

    I have a script that's supposed to make subforms visible based on the selection in 3 DDLs. The script seems to work sort of. The space is there but the actual content of the subform is not visible.
    The subforms are set to Hidden.
    The script is set in the exit event of the third DDL.
    Thanks,
    MDawn

    Hi Margaret,
    In the windsNtwkAccess exit event code at line 298  you need to change
    else if (v1 = '2')
         to
    else if (v1 == '2')
    That is change the equals to a double equals.
    You also have code in the form1.page4.eitEquipment ready:layout event and form1.page4 ready:layout events that seem to duplicate this code and should be removed.
    Regards
    Bruce

  • User of Checkbox/ Radio Selections.doc

    User of Checkbox/ Radio Selections.doc
    Thank you, this is very informative and helpful. In the doc you mentioned about a cfm file, however I was not able to see the file. Will you be able to explain a bit about it?

    Hi,
    here
    you´ll find an explanation, working example and the related
    javascript code

  • Getting the label from a radio selection in a radio buttons box

    I am using a radio buttons control, with four radio selections in it.  I understand that this is an enumerated type, so the value is a "number."  When you wire that control to a case statement, the case is auto-populated with the labels of the radio selections.  Is there a way to capture the label of the button which was selected?    I am using LabVIEW 8.0 for this project.  Thanks in advance for your time.
    Solved!
    Go to Solution.

    Hi bj,
    just use a FormatIntoString with format specifier "%s"...
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome

  • Can someone tell me where in numbers 3.0 the formula bar is, or how I can make it visible?

    Hi,
    I've updated to the new numbers (3.0) and acutally it looks not back. But there is one point that really annoys me. I cannot find the formula bar and also I could not find in the menu where I can make it visible.
    Any hints from the community?
    Thanks

    DeSignature wrote:
    Every cell is a formula-editor now, that - once opened -  can be moved or resized.
    Needs a bit of getting-used-to.
    It only looks that way because the movable formula editor window starts out covering the cell. You can move it out of the way and it won't look like the cell any more.
    Jerry

  • Hello, I need to download the videos made with Ipad on a USB stick. How do I make them visible then with a Windows PC? I need to transform. Mov in that format? How to make? thanks

    hello, I need to download the videos made with Ipad on a USB stick. How do I make them visible then with a Windows PC? I need to transform. Mov in that format? How to make? thanks

    The camera connection kit can only be used to import photo/video files from a camera, SD card or USB flash drive. You can't import other types of files. You can't export any type of files using the camera connection kit.
    How to Transfer Photos from an iPad to a Computer
    http://www.wikihow.com/Transfer-Photos-from-an-iPad-to-a-Computer
    Importing Personal Photos and videos from your iOS device to your computer.
    http://support.apple.com/kb/HT4083
     Cheers, Tom

  • Invisible text in design view, how do I make it visible?

    I cant figure out why the text in Dreamweaver is invisible,
    though I can highlight it still, and see it fine in code view. I
    cant make it visible in design view. I dont see css attached to the
    text itself, only to the block, and other site elements, but
    something in css is causing the text to be hidden and I dont know
    how to make it visible. Anybody know what I should be editing or
    looking to edit?
    Thanks ahead of time.

    It sounds like a containing element may have display:none,
    and that is
    altered by JavaScript in the browser. DW Design View does not
    run
    JavaScript, so you won't see elements like that in Design
    View.
    If this is the case, and you are running CS3 (I think?) or
    later, go to
    Preferences > Invisible Elements and make sure
    display:none elements are
    turned on. This will show an icon in Design View that you
    can
    right-click and use Element View > Full (shortcut is to
    double-click) on
    to temporarily see that element. Use Element View > Hidden
    (or F5) to
    revert to the default view.
    You can also override display:none in a Design-time Style
    Sheet if you
    want to always see that/those elements.
    HTH,
    Randy
    > no, the text color is different and is definded in css
    file...and the browser
    > displays the text as defined, its the dreamweaver that
    makes it totally
    > invisible. I tried changing all "hidden" elements in css
    file to "visible" but
    > that didnt do it.

  • How do I make them visible?

    I have an external hard drive that is split into one PC section and one Mac section. I have a new MacBookPro and now I want to copy some files from the PC section to the Mac section but can not see any files in the PC section to copy. How do I make them visible?
    Confused.

    Open Terminal in the Utilities folder. Enter at the prompt:
    chflags nohidden
    After the word "hidden" put a space and type in the path to and name of the file. For example, if they are on the Desktop: chflags nohidden ~/Desktop/name_of_file. Include the file's extension. Press RETURN. If all the files have the same extensions, then use chflags nohidden ~/Desktop/*.jpg or *.jpeg.

  • What makes a field eligible for selecting data in a subreport?

    Hello,
    I have posted the following question to [StackOverflow|http://stackoverflow.com/questions/4366702/what-makes-a-field-eligible-for-selecting-data-in-a-subreport], but it has so far generated no replies. I decided to cross-post it here to see if I could get a better result.
    The TL;DR of it is that I have a field which I should be able to link in my Subreport, but it does not appear, and I was wondering what I need to do to make it appear.
    I have a Crystal Report I'm trying to recreate from scratch after an update from VS2008 to VS2010 caused it to implode horribly.
    I've gotten most of the way through, but I'm at a stage where I'm linking a field in the Main Report to a corresponding field in the Subreport.
    I have set up a bunch of Database fields in the Subreport, I've added the table I want, TableA, I've linked it up as everything was linked in the original report, with TableA at the head of the linking chain, so that all the rows I want can be derived from the result of that first query ( Actually, all of the links from the original Report were red in the Database Fields linking dialog, whereas mine are a bit rainbow-y. All the links in TableA are red, though... _ )
    In the "Subreport Links" dialog, I have an integer which I know is being pulled from the database correctly. I've added it in the "Fields to link to" listbox, and selected the newly-created parameter in the "Subreport parameter to use" combobox. I've ticked the "Select data in subreport based on field" checkbox.
    The database field I want to link to then does not appear in the second combobox.
    Another integer field in TableA shows up fine in the "Select data..." combobox (and is linked to another field being passed in), so I don't know why these two integer fields, which are equally important, and exist on the same level, on the same table, are being treated differently by the report designed.
    Any ideas what I'm doing wrong?

    Here is what I'd do:
    1) Download CR 2008 eval designer from here:
    http://www.sap.com/solutions/sapbusinessobjects/sme/freetrials/index.epx
    2) Try the linking in CR 2008 designer
    3) If it does not work there, ask why not in the [CR design|SAP Crystal Reports, version for Visual Studio; forum.
    4) If you get the linking working in the CR 200 designer, try to run the report in your VS2010 app (after ensuring the report woks as expected in CR 2008).
    5) If (4) above works out for you, please let me know as this may be an issue with CRVS2010.
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup
    Got Enhancement ideas? Try the [SAP Idea Place|https://ideas.sap.com/community/products_and_solutions/crystalreports]

Maybe you are looking for

  • ICloud accounts (mine and my wife) seem to have merged

    I upgraded my phone, and gave my wife the hand-me-down iPhone 5S. But under my iCloud settings, the old phone 5S (and the iPhone 5 prior, even) still show up as being signed in under my iCloud. Now it seems that the two iCloud accounts have become co

  • Uneven cursor movement on trackpad

    Recently my cursor started becoming incredibly uneven. When i move the cursor fast on the trackpad, there is no uneven movement, and it is asa smooth as it's always been. But when i move the cursor slow, there is. I have to move the cursor rather fas

  • Wi-fi and bluetooth disabled by administrator after update

    I recently did the software update on my Q10 and since then I can't access either wifi or bluetooth. I get the message wifi (or bluetooth) disabled by your administrator. Vodafone haven't been able to help and have suggested having the phone wiped ba

  • Voiceover support for ABBYY pro and reading pdf files

    I want to know about voiceover support for ABBYY pro in macbook pro. and also want to know whether voiceover support reading pdf files. If so, which is the best pdf reader.

  • CC now requires admin rights, why?

    we have a group of CC accounts that sit behind a corporate firewall on managed machines.  up until today all CC elements were installing correctly and without a problem.  we had to open up the ports to adobe at first, but all has been running smoothl