Measurement Results in Execution list box

Anyideas or reliable procedures on adding measurement results to the existing pass/fail line in the execution display list box ?
Test Engineering
Empower RF Systems Inc.

Hi,
I guess as long as you put in the preconditions to handle those steps that dont have your extra properties and resize your list box to handle the extra information. You should be alright.
I have used the example in the Resource Library | TestStand | Step Types | Custom Steps Types - adding limits to the description in the Sequence Display without any problems.
Ray.
Regards
Ray Farmer

Similar Messages

  • List box multiselect resulting in pulsating cursor

    I followed the coding suggestion found in the following Topic link to create a multiselect Listbox that saves all its selections to the submitted XML output file.
    http://www.adobeforums.com/cgi-bin/webx/.3bbda6ea/9
    In the Listbox initialize event, I use this code:
    this.ui.choiceList.open = "multiSelect";
    this.rawValue = "-1";
    In the invisible Textbox preSubmit event, I use this code:
    this.rawValue = Listbox1.rawValue;
    However, in Designer's PDF Preview, as well while testing in Acrobat 7, the moment I have selected two or more items in the Listbox with the Ctrl key AND THEN click into any other field in the form, the cursor rapidly pulsates between either the text cursor and the hourglass, or the hand cursor and the hourglass.
    I can continue to fill out the form just fine and submit by email, and all the selected data is preserved in the XML output -- however, the pulsing cursor will totally unnerve the users.
    Does anyone have any idea why it does this? This behavior doesn't happen in the example that I borrowed it from.

    [email protected] wrote:
    > Note that this will only work if the text and value assigned to an item in the list box are the same as well as only work in the single-selection case.
    >
    > xfa.event.newText will only be set to the item text of the item which was clicked by the mouse. If an item's value differs from its text (e.g. you have an item named "Vegetables" with a value of "1"), xfa.event.newText will be set to "Vegetables", not "1". Although you can determine that the value of the new selected item is "1" by using this.boundItem(xfa.event.newText), you can't determine the value of all items that were selected.
    >
    > In a multi-select list box, simply using xfa.event.newText won't work in all cases because even when the user shift-clicks an item to select all items from the last selected item to the item clicked, xfa.event.newText will still only be set to the item that was clicked as opposed to being, for example, a newLine-delimited string of all items that were selected as a result of the shift-click.
    >
    > Although we shouldn't have to be calling this.saveXML() prior to retrieving this.rawValue, it's the only way we've found to successfully retrieve the value of all items that were selected at the time of the Change event.
    >
    > Stefan
    > Adobe Systems
    Sorry, I misunderstood the problem. I think the real issue here is that
    multiselect list boxes are not fully supported. Be careful when using
    these. If you try to export xml data from the form, you will get mixed
    results. Sometimes it exports all of the values, sometimes it exports
    one of the values, and sometimes it exports some of the values...none of
    which seem to match what was actually selected. At least this is what I
    experienced in limited testing. Proceed with caution!!!
    Justin Klei
    Cardinal Solutions Group
    www.cardinalsolutions.com

  • I have result after execution of OperationBinding. How can i parse and store in list.

    I have result after execution of operation binding. how can i parse and store in list

    Hi,
    I Thought u have custom method in AM which returns List Data type. What is the requirement exactly, bcz commit operation have void return type.
    Ex: create custom method in AMimple class
    public List sampleData(){
    // code here to set the values in List object.
    now expose the above method in client interface. Then add the Method action binding in pageDef file and execute the below code in managed bean
    OperationBinding operationBinding = (OperationBinding)bindings.getOperationBinding("sampleData");
                List result =(List) operationBinding.execute();
    Thanks
    Nitesh

  • Getting multiple values from a list box

    Hi,
    I am not able to get multiple selected values from a list box using the getParameterValues(). I used the following code..
    String[] names=request.getParameterValues("lname");
    can anyone tell me what the error is or is there any other way i can get multiple selected values from a list box.
    Thanks
    Satish

    Fragment 1
    This is the JSP Code am using for testing
    <%
    String[] name =request.getParameterValues("D1");
    if(name.length==1)
    String value=name[0];
    Instead of name.lenght==1 try with name!=null
    Fragment 2
    out.println(value);
    replace the above fragment with
    %>
       <%-- print result -->
       <%=name[0]%>
    <%
    Fragment 3
    else
    %>
    The list box D1 is a multiple select list box.
    If it still doesn't work, check that the checkboxes have the same name as well as different values
    <input type="checkbox" name="D1" value="1">
    <input type="checkbox" name="D1" value="2">I hope this helps :-)
    Good luck
    touco
    ps: i want duke

  • How to create an alert at the list item of List box in vbs/c sharp

    Dear All,
    I need to know how can we create an alert, or a message on the execution of the last item in the List box.

    What do you mean by "on the execution of the last item in the list box"? Do you mean when that last item of a ListBox is selected? If so, you could use the following code:
    Private Sub ListBox1_SelectedIndexChanged(sender As Object, e As EventArgs) _
    Handles ListBox1.SelectedIndexChanged
    Dim lb As ListBox = CType(sender, ListBox)
    If lb.SelectedIndex = lb.Items.Count - 1 Then
    MessageBox.Show("Last item is selected")
    End If
    End Sub

  • Warning using DWR to populate list box

    hi all,
    iam trying to use DWR for populating list box wen a check box is checked.iam using Tomcat 4.1 & j2sdk 1.4.2
    but iam getting an alert: illegal access to default constructor Aug 20, 2006 6:30:43 PM uk.ltd.getahead.dwr.util.CommonsLoggingOutput warn
    WARNING: Method execution failed:
    java.lang.InstantiationException: Illegal Access to default constructor
            at uk.ltd.getahead.dwr.create.NewCreator.getInstance(NewCreator.java:62)
            at uk.ltd.getahead.dwr.impl.ExecuteQuery.execute(ExecuteQuery.java:172)
            at uk.ltd.getahead.dwr.impl.DefaultExecProcessor.handle(DefaultExecProce
    ssor.java:48)
            at uk.ltd.getahead.dwr.impl.DefaultProcessor.handle(DefaultProcessor.jav
    a:81)
            at uk.ltd.getahead.dwr.AbstractDWRServlet.doPost(AbstractDWRServlet.java
    :162)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
            at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl
    icationFilterChain.java:247)
            at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF
    ilterChain.java:193)
            at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperV
    alve.java:256)
            at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContex
    t.invokeNext(StandardPipeline.java:643)
            at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.jav
    a:480)
            at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
            at org.apache.catalina.core.StandardContextValve.invoke(StandardContextV
    alve.java:191)
            at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContex
    t.invokeNext(StandardPipeline.java:643)
            at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.jav
    a:480)
            at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
            at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:
    2415)
            at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.j
    ava:180)
            at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContex
    t.invokeNext(StandardPipeline.java:643)
            at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatche
    rValve.java:171)
            at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContex
    t.invokeNext(StandardPipeline.java:641)
            at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.j
    ava:172)
            at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContex
    t.invokeNext(StandardPipeline.java:641)
            at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.jav
    a:480)
            at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
            at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineVal
    ve.java:174)
            at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContex
    t.invokeNext(StandardPipeline.java:643)
            at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.jav
    a:480)
            at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
            at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:22
    3)
            at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java
    :594)
            at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.proce
    ssConnection(Http11Protocol.java:392)
            at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java
    :565)
            at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadP
    ool.java:619)
            at java.lang.Thread.run(Thread.java:534)
    Aug 20, 2006 6:30:43 PM uk.ltd.getahead.dwr.util.CommonsLoggingOutput warn
    WARNING: Erroring: id[53_1156078843109] message[uk.ltd.getahead.dwr.OutboundVari
    able@497904]my code goes here,
    package db;
    import java.util.*;
    class ArrayL 
         public ArrayL()
              System.out.println("In constructor");
         public ArrayList getA(String x)
              ArrayList al=new ArrayList();
              al.add("1");
              al.add("6");
              al.add("42");
              al.add("16");
              al.add("3");
              System.out.println("al-------"+al);
              return al;
         public int[] getNumbers(boolean big)
            if (big)
                return new int[]
                    1000, 2000, 3000, 4000
            else
                return new int[]
                    1, 2, 3, 4, 5, 6, 7, 8, 9, 10
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE dwr PUBLIC "-//GetAhead Limited//DTD Direct Web Remoting 1.0//EN"
        "http://www.getahead.ltd.uk/dwr/dwr10.dtd">
    <dwr>
      <allow>
        <create creator="new" javascript="Demo" scope="session">
          <param name="class" value="uk.ltd.getahead.dwr.Demo"/>
        </create>
         <create creator="new" javascript="ArrayL" scope="session">
          <param name="class" value="db.ArrayL"/>
        </create>
      </allow>
    </dwr>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
    <HTML>
    <HEAD>
    <TITLE> New Document </TITLE>
    <script type='text/javascript'
        src='/ajax1/dwr/engine.js'></script>
    <script type='text/javascript'
        src='/ajax1/dwr/interface/ArrayL.js'></script>
    <script type='text/javascript'
        src='/ajax1/dwr/util.js'></script>
         <SCRIPT type='text/javascript'>
         <!--
                   function continentSelected()
                        var searchexp = $("continent").value;
                        ArrayL.getNumbers(searchexp, displayItems);
                        return false;
                   function displayItems(items)
                        DWRUtil.removeAllOptions("country");
                      DWRUtil.addOptions("country", data);          
                        if (items.length == 0)
                             alert("No matching products found");
                             $("country").style.visibility = "hidden";
         //-->
         </SCRIPT>
    </HEAD>
    <BODY>
      <FORM NAME="countryform" ID="countryform" ACTION="doCountry" METHOD="POST">
        <SELECT name="continent" id="continent" onChange="continentSelected();">
          <OPTION VALUE="Africa">Africa</OPTION>
          <OPTION VALUE="America">America</OPTION>
          <OPTION VALUE="Asia">Asia</OPTION>
          <OPTION VALUE="Australia">Australia</OPTION>
          <OPTION VALUE="Europe">Europe</OPTION>
        </SELECT>
        <SELECT name="country" id="country">
        </SELECT>
    </BODY>
    </HTML>can any one help with this problem
    Thank u in advance

    I'm not sure if the code you display is 'Exactly' how it is written.
    If it is:
    1) The class needs to be public (i.e. public class ArrayL {.....})
    2) In the code below, the value of searchexp is a string
               var searchexp = $("continent").value;
              ArrayL.getNumbers(searchexp, displayItems); but the function
    public int[] getNumbers(boolean big) takes a boolean.
    3) In the call DWRUtil.addOptions("country", data); 'data' isn't defined did you mean 'items'?
    Finally in the statement that you have if (items.length == 0) I have found that does not work with Collections (at least Maps) returned from a method to DWR (as of 1.1.3).
    Good luck

  • List Box With Writing Facility

    Hello Experts ,
                            I want to create a list box in selection-screen with input facilty,
                            i.e i should be able write in that list box just in case of parameters , right now
                            i'm able to select values from drop down only .
                            in short it should just work like command field in screen , where we can write t-code
                            or select t-code from drop down .
    Regards
    Ajit

    Hi ajit,
    without logging onto system and creating a sample, I can tell you what online documentation says about [Using a Different Search Key|http://help.sap.com/saphelp_nw70/helpdata/en/d3/2e974d35c511d1829f0000e829fbfe/frameset.htm]
    READ TABLE itab WITH KEY k1 = f1 ... kn = fn result.
    The search key consists of arbitrary table fields k1 ... kn. If you do not know the name of a component until runtime, you can specify it dynamically as the content of a field n1 ... nn using (n1) = f1 (n2) = f2 .  If n1 ... nn is empty when the statement is executed, the search field is ignored.
    That means that for the READ TABLE statement you should use a number of key specifications not less than the possible maximum and then dynamically fill the key variables and key values.
    Do not forget to clear before you do the next read for another table.
    Hope it works.
    Also, this is SAP NetWeaver 7.0, I think dynamic key specification was not possible earlier.
    Regards,
    Clemens

  • List Box showing Value and Display members?

    Ok this is a CONCEPT problem (the code is not professional, just read it for the concept, though it does compile and run).
    Right, I have asked many people on IRC and no one is giving me a straight answer lol so maybe some professionals can help me.
    I am trying to use a Datasource property for my combobox. This is so I can just pass an entire KeyValue pair with indexes and values to be shown in the listbox.
    Creating the keyvaluepair as a WHOLE and passing that to datasource property works perfectly.
    Creating a keyvaluepair PROCEDURALLY (in a loop or w/e) ends in the datasource property ToString()ing it, list box items show BOTH value AND display members in square brackets as an entire option.
    NOTE: Getting the lsitbox.value results in ONLY the valuemember being returned even though the listbox shows both the valuemembers AND the displaymember? it knows they are different?
    Now, I dont want any alternatives or comments about the quality of the code, all I want to know is WHY is it doing this, it seems compeltely illogical that the same TYPE and Values and can different Effects within the datasource property? Its like it knows
    it was built procedurally?
    Anyway here is some code for reference:
    // Windows Form
    namespace skbtInstaller
    public partial class frmMainWindow : Form
    public frmMainWindow()
    InitializeComponent();
    // coxArmaPath = Combo Box (simple drop down)
    this.cBoxArmaPath.ValueMember = "Key";
    this.cBoxArmaPath.DisplayMember = "Value";
    public void addServerPathItem(String Key, String Value)
    this.cBoxArmaPath.Items.Add(new KeyValuePair<String, String>(Key,Value));
    // This works fine, only the "DisplayMember" is displayed and the "ValueMember" is hidden.
    // This acts differently with the same types???
    public void setServerPathDatasource(List<KeyValuePair<String, String>> source)
    this.cBoxArmaPath.DataSource = new BindingSource(source, null);
    public class skbtServerControl
    private frmMainWindow frmMainWindowHandle;
    public void refreshformWindow()
    // Clear Drop Box (empties drop box)
    this.frmMainWindowHandle.clearPathBox();
    //skbtServerConfig is very simple property object
    foreach (KeyValuePair<String, skbtServerConfig> pair in CoreConfig.getServerConfigList())
    // Populate Drop Box
    this.frmMainWindowHandle.addServerPathItem(pair.Key, pair.Value.getTextualName()); // this works as intended
    // cBox gets items like: Some Display Text, Some Display Text, Some Display Text (PERFECT!)
    // This works absolutely fine. ValueMembers are hidden.
    public void refreshformWindowWithSTATICDatasource()
    // Clear Drop Box
    this.frmMainWindowHandle.clearPathBox();
    var pathDataSource = new List<KeyValuePair<String, String>>()
    new KeyValuePair<String, String>("testKey1", "somevalue1"),
    new KeyValuePair<String, String>("testKey2", "somevalue2"),
    new KeyValuePair<String, String>("testKey3", "somevalue3")
    // Populate Drop Box
    this.frmMainWindowHandle.setServerPathDatasource(pathDataSource);
    // cBox gets items like: Some Display Text, Some Display Text, Some Display Text (PERFECT!)
    // ** HERE IS THE PROBLEM?? **
    // This creates a type that seems different to the above function which works fine...
    public void refreshformWindowWithDatasource()
    // Clear Drop Box
    this.frmMainWindowHandle.clearPathBox();
    var pathDataSource = new List<KeyValuePair<String, String>>();
    //skbtServerConfig is very simple property object
    foreach (KeyValuePair<String, skbtServerConfig> pair in CoreConfig.getServerConfigList())
    pathDataSource.Add(new KeyValuePair<String, String>(pair.Key, pair.Value.getTextualName()));
    // Populate Drop Box
    this.frmMainWindowHandle.setServerPathDatasource(pathDataSource);
    // cBox gets items like [asjAETJQ5785d45,Some Display Text], [asawfgQ5785d45,Some Display Text], [asjAhrrQ5785d45,Some Display Text]
    // ????? surely this function should act exactly like the function above??
    Thanks!
    (I have posted on codeproject too, will condense any replies).
                 

    Thanks Michael!
    I did debug this and it turns out when i set a new BindingSource to the combo box, indeed the DisplayMember gets reset. Oddly though, the ValueMember stays the same.
    I have fixed this with setting the Members before every new bindingSource is set to the combobox, strange that only the displaymember is reset?
    For reference, the new resolved code: (this compiles albeit with designer components placed)
    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using System.Windows.Forms;
    namespace etstapp1
    public partial class Form1 : Form
    private skbtServerControl sc;
    public Form1()
    InitializeComponent();
    this.sc = new skbtServerControl(this);
    // coxArmaPath = Combo Box (simple drop down)
    this.cBoxArmaPath.ValueMember = "Key";
    this.cBoxArmaPath.DisplayMember = "Value"; // This doesnt seem to stick after the first datasource set??
    public void addServerPathItem(String Key, String Value)
    this.cBoxArmaPath.Items.Add(new KeyValuePair<String, String>(Key, Value));
    // This works fine, only the "DisplayMember" is displayed and the "ValueMember" is hidden.
    // This acts differently with the same types???
    public void setServerPathDatasource(List<KeyValuePair<String, String>> source)
    this.cBoxArmaPath.DisplayMember = "Value"; // fix datasource problem
    this.cBoxArmaPath.ValueMember = "Key"; // fix datasource problem
    this.cBoxArmaPath.DataSource = new BindingSource(source, null);
    public void clearPathBox()
    if(this.cBoxArmaPath.DataSource == null){
    this.cBoxArmaPath.Items.Clear();
    else
    this.cBoxArmaPath.DataSource = null;
    private void btnStatic_Click(object sender, EventArgs e)
    this.sc.refreshformWindowWithSTATICDatasource();
    private void btnNormal_Click(object sender, EventArgs e)
    this.sc.refreshFormWindow();
    private void btnDynamic_Click(object sender, EventArgs e)
    this.sc.refreshformWindowWithDatasource();
    public class skbtServerControl
    private CoreConfig CoreConfig;
    private Form1 frmMainWindowHandle;
    public skbtServerControl(Form1 f){
    this.frmMainWindowHandle = f;
    this.CoreConfig = new CoreConfig();
    public void refreshFormWindow()
    // Clear Drop Box (empties drop box)
    this.frmMainWindowHandle.clearPathBox();
    //skbtServerConfig is very simple property object
    foreach (KeyValuePair<String, skbtServerConfig> pair in CoreConfig.getServerConfigList())
    // Populate Drop Box
    this.frmMainWindowHandle.addServerPathItem(pair.Key, pair.Value.getTextualName()); // this works as intended
    // cBox gets items like: Some Display Text, Some Display Text, Some Display Text (PERFECT!)
    // This works absolutely fine. ValueMembers are hidden.
    public void refreshformWindowWithSTATICDatasource()
    // Clear Drop Box
    this.frmMainWindowHandle.clearPathBox();
    var pathDataSource = new List<KeyValuePair<String, String>>()
    new KeyValuePair<String, String>("testKey1", "somevalue1"),
    new KeyValuePair<String, String>("testKey2", "somevalue2"),
    new KeyValuePair<String, String>("testKey3", "somevalue3")
    // Populate Drop Box
    this.frmMainWindowHandle.setServerPathDatasource(pathDataSource);
    // cBox gets items like: Some Display Text, Some Display Text, Some Display Text (PERFECT!)
    // ** HERE IS THE PROBLEM?? **
    // This creates a type that seems different to the above function which works fine...
    public void refreshformWindowWithDatasource()
    // Clear Drop Box
    this.frmMainWindowHandle.clearPathBox();
    var pathDataSource = new List<KeyValuePair<String, String>>();
    //skbtServerConfig is very simple property object
    foreach (KeyValuePair<String, skbtServerConfig> pair in this.CoreConfig.getServerConfigList())
    pathDataSource.Add(new KeyValuePair<String, String>(pair.Key, pair.Value.getTextualName()));
    // Populate Drop Box
    this.frmMainWindowHandle.setServerPathDatasource(pathDataSource);
    // cBox gets items like [asjAETJQ5785d45,Some Display Text], [asawfgQ5785d45,Some Display Text], [asjAhrrQ5785d45,Some Display Text]
    // ????? surely this function should act exactly like the function above??
    public class CoreConfig
    public Dictionary<String, skbtServerConfig> getServerConfigList(){
    return new Dictionary<string, skbtServerConfig>()
    {"somekey1", new skbtServerConfig("somename1")},
    {"somekey2", new skbtServerConfig("somename2")}
    public class skbtServerConfig
    private String name;
    public skbtServerConfig(String name)
    this.name = name;
    public String getTextualName()
    return this.name;
    Talking with someone it seems logical that every time I set a new BindingSource the component will not know if I want to keep the same member values so it resets them, but why it only resets displaymember? very strange to me.
    Thanks again.

  • List boxes as filter

    Hi,
    I’m developing an asp page containing a form with two
    dynamically populated list boxes and a submit button. The submit
    button should open up another asp page with results filtered by
    criteria determined by the contents of the 2 list boxes. I can
    populate the list boxes OK but I am not sure about how to use the
    selected values as the filter. Can anyone point me in the right
    direction?
    Thanks,
    Chris

    Select * WHERE IDFieldName <> Variable1 && / OR
    IDFieldName <> Variable2
    You can set your variables in the advanced section of your
    recordset box.
    Check your SQL as the above is just 'pseudo' (I alway shave
    to check SQL,
    for some reaons can never remember it quite right). The
    recordset box will
    help you to find the right way to access your variables -
    URL/Form/Session,
    etc.
    HTH,
    Jon
    "Chris_HSL" <[email protected]> wrote in
    message
    news:e9o4r0$bbi$[email protected]..
    > Hi,
    >
    > I?m developing an asp page containing a form with two
    dynamically
    > populated
    > list boxes and a submit button. The submit button should
    open up another
    > asp
    > page with results filtered by criteria determined by the
    contents of the 2
    > list
    > boxes. I can populate the list boxes OK but I am not
    sure about how to use
    > the
    > selected values as the filter. Can anyone point me in
    the right direction?
    >
    > Thanks,
    >
    > Chris
    >

  • List box column shown in password style

    Hello,
    for my application i need to show / convert a column of a list box (with passwords) in password style (******).
    Example:
    Name    Password     Rights
    John      *****              No
    Luis       *****              Yes
    How can i make this.
    greetings
    schwede

    Schwede wrote:
    Thankyou for your answers.
     I think i need to explain this a bit more:
    The user enter his Name and Password in different string elements and hit a button to write into item names of the listbox. Other user should not see his password. But i need the password later in the program. If there is no password there are no "*".
    Have you some example code for me?
    greetings
    schwede 
    The way to do this is to keep the information about your user list in an array of clusters, one cluster for each user. This array is kept somewhere in your diagram, either in a shift register in your UI (rather ugly), or in a LV2 style global variable, that has methods to add, delete and retreive a record and also handles the loading and saving of the list from/to somwhere (text file, database, whatever).
    Then whenever you need to update the list control you enumerate this stored list and convert it into the required 2D string array. What you do in this conversion step is completely up to you.
    Rolf Kalbermatter
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • Please Why These Marks ("???????" ) in My List Box ?

    hi all ;
    Please Tell me :
    when i want to add some records in arabic language in list box item as fixed ,,
    the result of the arabic record is as a question marks "???" , but the english is not ...
    can you tell me why this and how to solve it ....
    Best Regards.

    Hello;
    When i have faced this problem i solved it by configure jdeveloper compiler to work with arabic language.
    you can do that by these steps
    tools ---> project properties ---> compiler ---> select UTF-8 from charcter encoding combobox then click ok
    right click on your projects and do the same.
    Hope that helps you
    Best regards

  • Combo/list box image next to option

    Hi,
    I'm trying to display an image (small icon) within a drop
    down/combo/list box in a form. I've not found a simple way of doing
    it and wondered if anyone could advise of an easy way to do this
    seemingly simple task ?
    The result I'm after can be seen here:
    http://dhtmlx.com/docs/products/dhtmlxCombo/index.shtml
    of the five combo boxes displayed I'm after the 'combo box
    with icons' result. The method used on this page to acheive the
    effect seems a bit overkill for my requirement, otherwise I'd
    try/use it. I've looked at the page source, but nothing is revealed
    regarding the html/css used to do it.
    I'd appreciate anyone advising a simple way to do this.
    Many thanks.

    If your page is asp then the code below will do what you
    want. Now when a
    user selects a country then that country id will be entered
    into a cookie.
    then when the user goes to other pages on your site you can
    have if else
    statements to show language of your choice.
    if you need the country flag icons go to ip2location.com they
    will give them
    for free.
    <form action="" name=langswitch style="display:
    inline;">
    <table cellpadding=0 cellspacing=0 style="float:right;
    margin-top:-14px;"><tr>
    <td style="padding-left: 3px; padding-right:
    3px"><img
    src="/images/flags/<%= Request.Cookies("country")
    %>.gif" width="14"
    height="11" border="0"></td>
    <td><select name="langcountry"
    onchange="document.forms.langswitch.submit()">
    <option value="uk" <%If (Not
    isNull(Request.Cookies("country"))) Then If ("uk" =
    CStr(Request.Cookies("country"))) Then
    Response.Write("selected=""selected""") :
    Response.Write("")%>>English
    <option value="es" <%If (Not
    isNull(Request.Cookies("country"))) Then If ("es" =
    CStr(Request.Cookies("country"))) Then
    Response.Write("selected=""selected""") :
    Response.Write("")%>>Espa&ntilde;ol
    <option value="de" <%If (Not
    isNull(Request.Cookies("country"))) Then If ("de" =
    CStr(Request.Cookies("country"))) Then
    Response.Write("selected=""selected""") :
    Response.Write("")%>>Deutsch
    <option value="fr" <%If (Not
    isNull(Request.Cookies("country"))) Then If ("fr" =
    CStr(Request.Cookies("country"))) Then
    Response.Write("selected=""selected""") :
    Response.Write("")%>>Fran&ccedil;ais
    <option value="it" <%If (Not
    isNull(Request.Cookies("country"))) Then If ("it" =
    CStr(Request.Cookies("country"))) Then
    Response.Write("selected=""selected""") :
    Response.Write("")%>>Italiano
    <option value="br" <%If (Not
    isNull(Request.Cookies("country"))) Then If ("br" =
    CStr(Request.Cookies("country"))) Then
    Response.Write("selected=""selected""") :
    Response.Write("")%>>Portugu&ecirc;s (Br)
    <option value="hu" <%If (Not
    isNull(Request.Cookies("country"))) Then If ("hu" =
    CStr(Request.Cookies("country"))) Then
    Response.Write("selected=""selected""") :
    Response.Write("")%>>Magyar
    <option value="ru" <%If (Not
    isNull(Request.Cookies("country"))) Then If ("ru" =
    CStr(Request.Cookies("country"))) Then
    Response.Write("selected=""selected""") :
    Response.Write("")%>>Ð
    ÑfÑ?Ñ?кий
    <option value="jp" <%If (Not
    isNull(Request.Cookies("country"))) Then If ("jp" =
    CStr(Request.Cookies("country"))) Then
    Response.Write("selected=""selected""") :
    Response.Write("")%>>æ-¥æo¬èªz
    <option value="kr" <%If (Not
    isNull(Request.Cookies("country"))) Then If ("kr" =
    CStr(Request.Cookies("country"))) Then
    Response.Write("selected=""selected""") :
    Response.Write("")%>>í.oêµì-´
    <option value="cn" <%If (Not
    isNull(Request.Cookies("country"))) Then If ("cn" =
    CStr(Request.Cookies("country"))) Then
    Response.Write("selected=""selected""") :
    Response.Write("")%>>ä¸æ-?(ç®?ä½")
    </select></td></tr>
    </table>
    </form>

  • Why is list box field highlighted?

    I am creating a fillable PDF form using Acrobat Pro X (10.1.7) that is intended to be filled in using Reader or by hand. I have only one field that is a list box (with 43 items), and for some unknown reason, in both Acrobat Pro X and in Reader XI, it is being highlighted in blue even when all other fields are not highlighted (Highlight Existing Fields off). When the other fields are highlighted in light blue, the list box field is highlighted in a darker blue. It displays the same behavior whether the fill color is white or no color. When I print the form in black and white, which is how it will normally be printed, the field is filled in with a medium gray. I'm an Acrobat newbie so I haven't done anything fancy with the field. I need to get rid of the highlighting ASAP and I don't have a clue about what could be wrong. Does anyone have any suggestions?

    Perhaps "highlighting" is not the correct term for what is happening, sorry for the misuse of terminology. I need this field to have no background color and I don't understand why it does. I have difficulty believing this is a standard display methology because the field prints as medium gray on a B&W printer, and the black text is hardly visible as a result.
    The State field is a drop-down list and has no color. Do I need to change the County field to a drop-down list as well to get rid of this problem?

  • Dynamically populating List box

    Hello Everyone:
    I need to create a JSP with two combo boxes and submit button.
    Where the first combo box will be updated from database - which is simple.
    but depending on the selection of the first box the second box should be populated and should be able to make multiple selections in it.
    and in the same jsp page should be able to display the results, of what I added by submiting the previous form.
    Please can somebody help me witha sample.
    Thanks
    ASB

    Dear user,
    If you get any response for the asked question on Dynamically populating List box from anybody please forward the reply to the following e-mail id.
    [email protected]
    --SUBIR                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • How to add Tabs and List Boxes in Webi Report in Reporting Area(Not Report Filters & Input Controls)

    Hi All,
    I have a requirement to use some components called List Box and Tabs in my WebI report for presenting the information by dynamic dimension and measure selection using list box and segregate information by using Tabs as in below image.
    Image was prepared in MSPaint not executable webi report.
    Is it possible to integrate the list box and tabs into Report Zone in BO Webi? as show in below image?
    Thanks in Advance
    Muralidhar Reddy N

    Hello Muralidhar Reddy,
    The exact tool for your requirement is SAP BO Dashboard or SAP BO Design studio. WebI is a tool for ad-hoc reporting tool and we have limited functionalities to make dashboards using webI. You can have all those chart options in WebI and you can use Input controls or drill filters for restricting data. But you cannot have these selection components in reporting area. Tabs as shown in above post, you can have in bottom of the report.
    find below a good example of dashboard using WebI
    http://blog.davidg.com.au/2011/04/webi-as-dashboard.html
    hope it helps
    Regards,
    Nikhil Joy

Maybe you are looking for

  • Black screen with blinking cursor in top lefthand corner

    7 months ago I got the recovery virus, CherylG helped me by recommending and giving directions to use the Kaspersky Rescue disk.  I ran this and my Pavilion Notebook worked fine.  Now it has returned.  I tried re-running the Kaspersky Rescue disk.  I

  • SCSM R2 Duplicate Email Notifications

    Hello anyone! I recently installed SCSM R2 on Windows Server 2012 R2 and created my Service Manager environment. I incorporated an Active Directory connector so I could notify affected users and assigned users of incident creation, assignment and res

  • Blanks in XSLT blues

    It seems that Indesign does not handle blanks in a data source well. We are using xslt to break-up a large XRL file into localised versions. However we have to add a bit of junk to every blank field, which then needs to be removed in Indesign. Has an

  • Scrolling text at an angle

    don't suppose anyone has found a work a round in DPS to have a scrolling text box at an angle, so that the text inside the scrolling are scrolls at the same angle as the text box, and not just vertically. ...just on the remote off chance :-) Cheers A

  • How do I upload an image to a discussion?

    Please tell me the steps to add a screen cap to a discuusion thread in Apple Support Communities.  I have taken the screen cap (power + home buttons).  I tried copying and pasting the picture from the Photos app into my discussion in my Safari Web br