I want to display strings which are in case structure ,into one text box

hi,
i am writing a vi, which has event structure inside that a
case structure.
i problem is , i have two cases,
1) when the value is true it executes the true case, first it reads the string constant and second is the string indicator which is my out put.
2) in the false case it does pritty much same.
i want to display the inputs and out puts of different cases into the same text box that is one for input and one for output.
Can some one help me.
Solved!
Go to Solution.

Did u tried as Ravans suggested.
Put the indicators outside of the case structures.  Wire across the borders of the case structure.  It creates "tunnels".
 I am not getting
but it displays both result at a time. but i want
to display the instruction first, to the user, so that they act
according to the instruction and ,than i want to display the result.  
 Try this VI.
Balaji PK (CLA)
Ever tried. Ever failed. No matter. Try again. Fail again. Fail better
Don't forget Kudos for Good Answers, and Mark a solution if your problem is solved.
Attachments:
string display-1.vi ‏22 KB

Similar Messages

  • I want to display the both Hindi and English font in single text object

    hi...
    my problem is i want to display both Hindi and English font together in a single text object...
    the data is retrieved from Database in detail section...
    is there any font which supports both Hindi and English font for single text object...
    help me...

    hi Vinayak,
    If I understand your requirement, your field has full length word.
    Now we should split this field into 3 parts.
    Please Create 3 formulas.
    Part1
    stringvar s1;
    s1:= left({field}, InStr({field},"("));
    s1;
    Part2
    stringvar s2;
    s2:= Mid({field},InStr({field},"(")+1 ,InStr({field},")")- InStr({field},"(") -1);
    s2;
    Part3
    stringvar s3;
    s3:= Mid({field}, InStr({field},")"));
    s3;
    Now Place  a Text box in required section. Drag these 3 formula fields into the Text box.
    Right Click the Part2 and apply mangal font.
    Right Click the Part1, Part 3 and apply Arial font.
    I have tried this and implemented successfully. Please let me know if you still face any issue.
    Regards,
    Vamsee

  • [solved] To display Processes which are not running from constant process

    i have constant processes prostat1,prostat2,prostat3,prosta4,prostat6,prostat8,prostat9 (6 processes) runs to support the application
    Now my problem is
    i want to display the process which is not running (from the above 6 processes)
    Thanks in advance

    Try this
    echo "Constant processes not running"
    echo
    for PROC in prostat1 prostat2 prostat3 prostat4 prostat6 prostat8 prostat9
    do
            if [ ! "`ps -ef | grep $PROC | grep -v grep`" ]; then
                    echo $PROC
            fi
    doneBTW, those are 7....:-)

  • Want to display the both hindi and english font in single text object

    hi...
    my problem is i want to display both Hindi and English font together in  a single text object...
    the data is retrieved from Database in detail section...
    is there any font which supports both Hindi and English font for single text object...
    help me...

    hi,
    Is your single Text object contains combination of two strings?
    for example:
    {State}{City}
    If yes,
    Right Click the 1st string object within the Text box and 'Text Formatting' specify the  Hindi Font
    Right Click the 2nd string object within the Text box and 'Text Formatting' specify the  English Font.
    Regards,
    Vamsee

  • I HAVE A PROBLEM TO OPEN PDF IN PAGES WHICH ARE ATTACHED WITH EMAIL,SOME ONE CAN HELP ME.?i,m using MINI I PAD 4G wi-fi

    I CAN,T OPEN PDF FILES IN PAGES WHICH ARE ATTACHED WITH EMAIL OR CAN,T SHARE PDF FILES WITH PAGES

    Install free Adobe Reader.
    https://itunes.apple.com/sg/app/adobe-reader/id469337564?mt=8

  • Displaying the result of a calculation in a dynamic text box

    Hi folks,
    I'm having a very minor issue here (operator error, I'm sure ). With the help of some folks here, I've created a series of calculations, and I've got that part down. Now, I just need it to show up in the movie.
    I've created the dynamic text box in Flash (CS3), but when I hit test, it won't show up.
    After all the calculations, I should have a figure that I call totalmoney. My dynamic text box is called total. The user doesn't need to hit anything for it to appear. It just appears as part of the movie.
    Here's my code:
    stop();
    var startDate:Date = new Date(2010,0,12);  // use your  startyear, startmonth, startdate in the new Date() parameters.
    var  currentDate:Date = new Date();  // assuming user's clock is correct and in your  timezone.  else use server date/time.
    var numberOfSeconds:Number =  (currentDate.getTime()-startDate.getTime())/1000;
    var interest:Number =  (numberOfSeconds*0.74356);
    var totalmoney:Number =  (interest+15,000,000);
    function displaytotal(evt:TextEvent):void {
         total.text = "totalmoney";
    Any thoughts?
    Thanks!
    Napo

    You didn't have to bury any of the calculations in the function--leaving it as you had it is better.  They could remain where they a=werew, and you'll probably find you want them outside it if you have other plans for using them.  If left inside, they only have scope inside.  In the programming world, it's good to think of functions as things that do one thing and one thing only (though it isn't often practiced that way)--it's called modular design.
    When you place an event as an argument for a function, it typically means that there is an event listener that initiates the call to the function.  If you work with buttons you'll see what I mean.  But if the plan is to create your own call to a function when you desire it as such, not have it driven by an event listener, then you don't need to pass any event to it, though you may pass some other type of variable to it if need be.
    For instance, what you have now will call the function without an argument because the function has the value built into its code....
    displaytotal();
    But you could also make the function a little more generic and set it up to recieve the value instead as an argument...
    function displaytotal(amt:Number):void {
         total.text = String(amt); // an earlier error of mine
    displaytotal(totalmoney);
    That would make your function a little more useful.  Now it could be used to display other Number variables as well.
    // my earlier error was that a textfield displays text, so you need to convert the Number value to s String.
    Hope I'm not confusing you.

  • Access 2010 - How to display data from a table into a text box upon combo box selection?

    Hi
    I have a a table with 5 columns: month, year, USD, SGD, BAHT.
    I created a form with a combo box for selection of the month and year, and I would like to set adjacent text boxes to show USD, SGD, BAHT information. How can i go about doing that?
    From the Q&A here, most of them uses the function similar to this "=[Combo0].[Column](1)" to show the data in the text box, but this would require the combo box to list a whole bunch of details if i were to add in more currency values to the
    table. Is it possible to not show this information in the combo box, but still populate data in the textboxes base on a selection on only the "month" and "year" in the combo box.

    Hi,
    According to your description, my understanding is that you want to show only the month/year in the combo box, we can choose the date, and it will display the value of USD/SGD/BAHT based on the month/year.
    If it is, I recommend you try the steps:
    Create a form based on your data source table>Add the combo box>combo box wizard>Find a record on my form based on the value I selected my combo box>Add mouth and year to selected fields
    http://office.microsoft.com/en-us/access-help/create-a-list-of-choices-by-using-a-list-box-or-combo-box-HA010113052.aspx
    If I misunderstand something, please let me know. We may upload some screenshots or a sample through OneDrive.
    Regards,
    George Zhao
    TechNet Community Support

  • How to display string which has BSP elements correctly?

    Hi,
       I have a string variable lv_text which content is:
    <htmlb:group height = "100%"
                         width  = "100%" >
              <htmlb:groupHeader>
                <xhtmlb:toolbar id="toolbar1" >
                  <xhtmlb:toolbarItem placement="LEFT" >
                    <htmlb:textView design = "HEADER3"
                                    text   = "AAAA"/>
                  </xhtmlb:toolbarItem>
                </xhtmlb:toolbar>
              </htmlb:groupHeader>
              <htmlb:groupBody>
                <%
      if gv_if_dis_message = 'X'.
                %>
                <%@include file="message.htm" %>
                <%
      Endif.
                %>
              </htmlb:groupBody>
            </htmlb:group>
        I want to use it in my BSP page and display the content correctly. Because it has some BSP elements, so now it can not be displayed correctly. How to solve this problem?
        Thanks a lot!

    you cannot do this way. what you can do is call the factory method of the htmlb:<tab> to get the element and render the element to a string and you can now use this string in your bsp page.
    Regards
    Raja

  • I dont want to see emails which are sent to other folders using Rules

    Hi
    I have set a few rules in Outlook which send many of my emails to different folders. I don't want to see these emails on my Blackberry. This was working fine on my old Pearl but now on my new 9000, I get all the emails on my blackberry (irrespective of rules).
    Can anyone help?
    Thanks in advance

    To add, if indeed you are on BES, then you need to talk to your BES admins about activating Hard Deletes...you can refer them to this KB:
    KB04853 How to enable hard deletes on the BlackBerry Enterprise Server
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • I am currently using Firefox 3.6.27. I would like to update, but not to "the latest and greatest." How can I view a list of all the versions of Firefox which are still available, choose the one that I want, and download it?

    Not applicable.

    The only versions you update to are 3.6.28 (which will be dropped from support in a few weeks) or Firefox 11. I'd recommend either 11, or at least start planning for it. Is there a specific reason you don't want to upgrade to 11, I can try to help.

  • BlackBerry NOT displaying images which are from an SSI

    Hi all - hoping someone knows the answer to the following, or where I may be able to go to get the answer.
    I'm working on a website that has SSI (Server Side Includes) and CSS.....we have an SSI for the header, footer, and navigation sections of the site, and some of our images are referenced within the CSS.  Our BlackBerry is configured to read CSS as a handheld, but it doesn't seem to understand how to pull in an image which is referenced within an SSI or CSS.......is there another oprion/setting/download that we need in order for it to display the images?
    Thanks for any info you can provide!
    Steve

    ListenerAdmin is showing blank screen
    this is my command prompt when running listener
    D:\oraclexe>cd apex
    D:\oraclexe\apex>java -Dapex.home=D:/oraclexe/apex -Dapex.images=D:/oraclexe/ape
    x/apex/images -Dapex.port=8585 -jar D:/oraclexe/apex/apex.war
    INFO: Starting: D:\oraclexe\apex\apex.war
    See: 'java -jar apex.war --help' for full range of configuration options
    INFO: Extracting to: D:\oraclexe\apex
    INFO: Using classpath: file:/D:/oraclexe/apex/apex/____embedded/start.jar:file:/
    D:/oraclexe/apex/apex/WEB-INF/lib/apex.jar:file:/D:/oraclexe/apex/apex/WEB-INF/l
    ib/commons-fileupload-1.2.1.jar:file:/D:/oraclexe/apex/apex/WEB-INF/lib/je-4.0.1
    03.jar:file:/D:/oraclexe/apex/apex/WEB-INF/lib/ojdbc6.jar:file:/D:/oraclexe/apex
    /apex/WEB-INF/lib/ojmisc.jar:file:/D:/oraclexe/apex/apex/WEB-INF/lib/poi-3.6-200
    91214.jar:file:/D:/oraclexe/apex/apex/WEB-INF/lib/ucp.jar:file:/D:/oraclexe/apex
    /apex/WEB-INF/lib/xdb-11.2.0.jar:file:/D:/oraclexe/apex/apex/WEB-INF/lib/xmlpars
    erv2-11.2.0.jar:
    INFO: Starting Embedded Web Container in: D:\oraclexe\apex
    Jul 22, 2011 6:48:19 PM ____bootstrap.Deployer deploy
    INFO: Will deploy application path=D:\oraclexe\apex\apex\WEB-INF\web.xml
    Jul 22, 2011 6:48:19 PM ____bootstrap.Deployer deploy
    INFO: deployed application path=D:\oraclexe\apex\apex\WEB-INF\web.xml
    Using config file: D:\oraclexe\apex\apex-config.xml
    -- listing properties --
    PropertyCheckInterval=60
    ValidateConnection=true
    MinLimit=1
    MaxLimit=10
    InitialLimit=3
    AbandonedConnectionTimeout=900
    MaxStatementsLimit=10
    InactivityTimeout=1800
    MaxConnectionReuseCount=1000
    APEX Listener version : 1.1.2.131.15.23
    APEX Listener server info: Grizzly/1.9.18-o
    Jul 22, 2011 6:48:44 PM com.sun.grizzly.Controller logVersion
    INFO: Starting Grizzly Framework 1.9.18-o - Fri Jul 22 18:48:44 IST 2011
    INFO: http://localhost:8585/apex started.
    Using JDBC driver: Oracle JDBC driver version: 11.2.0.2.0
    Edited by: 874343 on Jul 22, 2011 6:42 AM
    Edited by: 874343 on Jul 22, 2011 6:51 AM

  • Report CN52N to display Network which are Closed

    Hi,
    Our Client User has came across an issue which is causing lack of accurate reporting from SAP.
    User runs the CN52N for Network Order status and schedule updates on a daily basis.
    It seems that when a Network is Closed or Technically Completed,  the Network drops out of the report.   
    Could please throw pointers on how to obtain the detail for network orders that are closed or technically completed.
    Regards
    Tushar

    Dear Michael,
    Please follow steps mentioned below.
    1. Execute CN52N report for Networks in question.
    2. Once you execute, click on option Edit -> Deleted Objects-> Display
    3. View Deleted Objects
    We have guided in similar fashion to our Client which in turn helped Client and hence issue was resolved.
    Regards
    Tushar

  • How do I make a photo background which is in two colours into one of the present colours, e.g. I have a predominantly white background with a small area of brown around a particularly nice photo of an iris?

    How do I get the background of a photo which is predominantly white, but has some brown area, all white?  The photo is of an iris but the top part of the flower is 'absorbed' into the brown background?  Help, please.  Groan

    By using an image-manipulation tool such as Adobe's Photoshop, Flying Meat's Acorn, or the open-source GIMP package, or similar.  There are various other packages around. 
    Now if you're looking for help with a specific package and not for the general sort of package that would be required, then you'll want to identify which image-manipulation tool you're using.  (And also consider checking with the forums specific to that tool; most organizations have some sort of FAQ or Wiki or documentation for the particular package.)

  • Aliases - A question about services which are known by more than one name

    If I create a tuxedo alias for an existing service, does the 'original' service simply answer to either name OR does the server end up with one more service than it used to have? i.e does aliasing create a clone.I dont want to discuss the implications of cloning etc, I just want to if a service then bears two name plates or whether I get a clone of a service. I just want to know what the truth is.TIA(I have had two conflicting explanations from experienced developers - nice guys but who is right?)

    Allan Moore wrote:
    If I create a tuxedo alias for an existing service, does the 'original' service simply answer to either name OR does the server end up with one more service than it used to have? i.e does aliasing create a clone.I dont want to discuss the implications of cloning etc, I just want to if a service then bears two name plates or whether I get a clone of a service. I just want to know what the truth is.TIA(I have had two conflicting explanations from experienced developers - nice guys but who is right?)When you write a service, you write a Function, for example TOUPPER. When you compile the function into a server, you specify a mapping that service TOUPPER will be processed by function TOUPPER. When you boot the server and use the -A option, your telling the server to advertise all services in its mapping table, hence service TOUPPER is advertised. If I use the -s option to alias, then I am overriding the compiled mapping table and dynamically creating a new one. So by saying
    -sTOUPPER:TOUPPERV2 I am saying that service TOUPPER will be processed by function TOUPPERV2 (version 2). Whatever was compiled into the server is overridden.
    If you put a -A and a -s on the CLOPT line, then things COULD get weird. If I said "-A -sTOUPPER:TOUPPERV2": then I'm saying TOUPPER is processed by both functions TOUPPER and TOUPPERV2. I don't know if this is even legal, and I can't think of a reason to do this. The Tuxedo service table just scans linearly looking for a string match on TOUPPER. Which ever function entry comes first is the function that will be called.
    If I said "-A -s TOLOWER:TOUPPER" then I'm adding a new service that uses an existing function. This is very legal, though a little cryptic for administrators. A better choice is "-s TOUPPER,TOLOWER:TOUPPER" so that it is explicit what services the service offers and what function is processing them.
    Hope this helps.
    Brian Douglass
    Transaction Processing Solutions, Inc.
    8555 W. Sahara
    Suite 112
    Las Vegas, NV 89117
    Voice: 702-254-5485
    Fax: 702-254-9449
    e-mail: [email protected]

  • How can I follow slurl's which are web short cuts into secondlife virtual world environment keeps telling me no association present and not available to be associated in the options/applications list

    Secondlife.com has a system to access their world straight into their virtual world environment called "slurls" which can be used on any webpage. It appears that in IE this system works correctly, but not in Firefox.
    See: http://slurl.com/about.php
    Just keeps telling me that no association is available, but there is nothing in the options/applications list to create this association with as "secondlife" protocol is not listed so cannot connect it to the phoenix viewer I use for access to this virtual world grid
    With over 1.3 million users of this world it is not an insignificant facility to be missing.

    To use servlets u have indeed to update your web.xml...Well I'm not sure this is relevant to your case anyway.
    You have to add a <servlet> element to this file.
    Something like this:
    <servlet>
    <servlet-name>blabla</servlet-name>
    <servlet-class>blablapackage.Blablaclass</servlet-class>
    <init-param>...</init-param>
    </servlet>
    Now this may not solve your problem. Make sure you refer to your servlets using their full qualified names.btw, just to be sure, what is your definition of "servlet"? (i mean: any java class or only javax.servlet.Servlet)

Maybe you are looking for

  • Solaris 8 ufsrestore issues

    Hello all, this is my first post here. I am experiencing a strange issue when attempting to do a ufsrestore of an entire backed up OS (Sol 8) The restore goes fine but some time after the new server is up and running I start getting these errors; # J

  • Extra field in the WOrklist

    Hi Specialist I would like to ask about add one extra field in the layout of the worlikst. there is a field: VERZN  --> Days in Arrears by Net Due Date that I would like to add in my layout. I check by the standard way using the "change layout" but t

  • How to generate dynamic table in JSPX page?(Use ADF to realize OAF)

    Dear all, My requirment is to realized the a EBS standard OAF page(PDH module) function by ADF technique. The key point is to realize Dynamic Search Layout and Dynamic Result Table Layout by ADF. If anyone who is skill at OAF and ADF, proficient in P

  • Import failure between Powerpoint 10 and Captivate 1.01.1451

    Hello from France, I use File > Import > PPT slides in Captivate 1.01 Then in the "WHERE?" box, I choose the place in the cp file where to import the PPT slides Then I click OK and the box closes. Then I see that a box appears very very shortly, whos

  • 1 iCloud account / 2 iphones with different phone number

    Would it be possible to share the same iCloud account between me (iphone 5, and my wife iphone 5C) we want to use same contacts, pictures, emails accounts... I would like us to have access to the same contacts, same pictures, same music... thanks for