Digital Display format bug?

I have an enum (happens to be a typedef) with the Display Format set to %.1d_0x%x so I can see decimal and hex representation.  When I turn on the digital display on the control it works fine.  If I turn the control into a constant the display format only shows the decimal part.
Tim Elsey
LabVIEW 2010, 2012
Certified LabVIEW Architect

This was reported to R&D (# 318263) for further investigation.
Although it was submitted 10/10/2011, I am following NI discussion forum protocol by posting here properly. I have no updates to share at this point. However, I will take this time to again personally thank you for taking the time to point out the bug.
Ben D.
Applications Engineer
National Instruments

Similar Messages

  • Chart digital display format keeps changing

    I am running Labview 8.5.1 on windows XP. My digital display for my chart keeps changing to %.2f format when I run the VI.
    I tried setting the display format to scientific but as soon as I run the VI, it changes back to floating point. I have included the VI. By the way, this did not work for 8.2.1
    Does anyone have any suggestions?
    Attachments:
    Overlay_Elnik-II.vi ‏39 KB
    Overlay-Init_Elnik-II.vi ‏34 KB

    Joseph Loo
    I was unable to reproduce your problem.  I changed the format to scientific on all the front panel digital controls and they will not change back for me.  I wonder if you need to use the Edit-> Make Current Values Default option in the LabVIEW menu. 
    I attached a copy of your vi. Modified with the new format.  Let me know if it loads correct. 
    Sorry I was not able to the find or load the init portion of your vi.
    Regards,
    -SS
    Attachments:
    Overlay_Elnik-II_no_init.vi ‏33 KB

  • Editable and Read-Only Date Picker have different display formats -- Bug?

    Hi all,
    This is a follow on to a previous posting about getting a Date Picker field to display read-only (Date Picker and Read-Only Condition works on LAST state of element
    Now past that hurdle, I have noticed something about the date picker field when it is displays read-only. Namely, the date format is not the format selected, nor does the read-only date format comply with the format mask in the source section.
    I've modified my small test app to work as intended in order to demonstrate this feature. I also opened it up so everyone can see it <blush>. You can find it here: http://htmldb.oracle.com/pls/otn/f?p=42513: Please navigate to the Update Project tab.
    When a project in Program One through Four is selected (which has a Spec Committed date), the date is displayed DD-MON-YY format. When a project the other Programs (which do not have Spec Committed dates at the time of this writing) are selected, and a date value selected with the date picker, the date is displayed in the anticipated DD-MON-YYYY format.
    Anyone else notice this, or have I just missed something obvious?
    Thanks,
    Petie

    I'm not sure why this happens but to work around it I added this before header process code to the page:
    execute immediate 'alter session set nls_date_format = ''DD-MON-YYYY''';
    Scott

  • How do I change the number of significant digits in a slide's digital display?

    I suspect I'm missing something really obvious. I want the slide's digital display to show 1.23 instead of 1.23456. Here's what I tried:
    1. Drop a Horizontal Pointer Slide
    2. Make its Digital Display visible
    3. Type 1.23456 into that display
    4. Pop up on the Digital Display and select "Display Format..."
    5. Change the number of significant digits to 3 and hit "OK"
    The digital display still shows 1.23456. What am I missing?
    Solved!
    Go to Solution.

    LOL - I had the same problem.  Hidden in plain sight!  All I saw was Numeric, and thought "Duh! Of course it's numeric - it's a slider!"
    I do think NI could do a much better job on this, perhaps with more informative labelling.  Slider Scaling or Scale Format might be better.  Also, since one can select the Digital Display by itself on the front panel, one should be taken directly to the digital display formatting when Properties is selected, instead of still having to change the dropdown. By selecting the digital display instaead of the slider, you're implying that you want to change its format only.

  • How to change slider control digital display precision from program

    I want to change slider control digital display precision from my Labview 2013 program. I can not find property that changes slider digital display format. 
    Solved!
    Go to Solution.

    rt clk the digital display>create>property node>format string
    you could also do the slide scale, if needed...
    from the front panel:rt clk properties>goto display format tab>goto drop down list and pick "digital display 0" and format

  • Chart digital display bug

    Hi,
    I am using chart with stacked plots and digital display for each of those stacked plots. There seems to be some update bug since if I move the display on the chart weird things start happening. The chart stops to update some plots and also artifacts appear. When I hide the digital display all seems to work as expected. What is the problem? Is it a bug? Is there some work around or do I have to code my own digital display?
    I made a short video to show the problem.
    LV 2011, Win7

    After I wrote my own implementation of the digital displays I realized that this problem appears also if I use separate controls and place them on the graph. Really annoying. The workaround I found, whether using the native charts digital display or your own version, is to force the graph to refresh. This surprisingly cannot be achieved by the method chart.refresh which doesn't help but by toggling for example Legend.ScrolBarVisible. If you toggle this property after writing data into the graph this annoying bug disappears. Other usable properies for this are: chart.visible, chart.updatemode, chart.plot.visible, chart.plot.color
    LV 2010
    LV 2011, Win7
    Attachments:
    DigitalDisplay_Workaround.bug.vi ‏16 KB

  • EXT Display Format LabVIEW bug

    Up for grab, this easy bug (tested in LV 2012.0f3 (32 bit) on Windows XP)
    From a clean start, create a new VI, drop a "Power of x" function and create control for all input and output. Set the representation of the controls/indicators to be "Extended" (I do that for "Y" first and then the other one are automatically created with the corect type). You get this:
    On the FP, enter 300 for Y and 0.01 for X and run the VI (you expect a result of zero).
    Just for fun, set the Display Format of the output (x^y) to Scientific just to check whether there is no hidden digit somewhere.
    Well, surprise!
    Here is what I get first:
    Then, after pressing OK:
    and after Cancel:
    The VI is password protected, so I ended up my little experiment here.
    Note that if you set the Display Format of x^y BEFORE you run the VI, there is no problem at all. However, once you have run it once, the dialog will pop-up at all times. This does NOT prevent you from changing the format, but it is annoying at the very least...
    I tried it with Exponential as well, trying a value of X = -1000 (you expect again a result of zero), to the same effect. It sounds like an underflow of some sort.
    There is no such problems with type Double.
    Comments welcome.

    X. wrote:
    Comments welcome.
    Ignoring for a moment what the actual problem is, I think the sequence of events is fairly simple:
    You open the property page and try to set the format.
    The property VI calls that subVI with the relevant data.
    In the subVI there is a format into string primitive with an unwired error output (or it's unwired downstream).
    There's an error and the VI has auto error handling enabled (or possibly not and this is an internal dialog, since the AEH dialog is different), so it tries to show you where the error happened.
    The VI is locked, so you get a PW dialog.
    Try to take over the world!

  • Weird Digital Display Key Down events

    (Using LV 8.51)
    I have a slider with the digital display shown.  The slider is restricted to 0-50 (I32)  I want the user to be able to type 0-50 in the digital display only.  I have formated the display as %2d and set all limits.  The display allows the user to type any arbitrary number of characters as well an many letters.  I figured out the random letters are the allowable numeric prefixas such as k (for kilo).  I need to not allow the user to type anything in the numeric display except [0-9][0-9].  I figured that I could filter the key down? event.  This did not work.  I placed the key down? event and the key down immediatly restricted the typing to a single character.  What did I do wrong or is this a bug.  Is thare a simpler way of restrictin g the imput (NOT Coersing which is done on the data but limit the input characters).  Thanks I am stuck on this one.
    Paul Falkenstein
    Coleman Technologies Inc.
    CLA, CPI, AIA-Vision
    Labview 4.0- 2013, RT, Vision, FPGA

    I hope I am doing something wrong but I dont see it.  It seems that independent of registering for the keydown event the action of the slider changes.  I have attached an example.
    Paul Falkenstein
    Coleman Technologies Inc.
    CLA, CPI, AIA-Vision
    Labview 4.0- 2013, RT, Vision, FPGA
    Attachments:
    Silder with event filter.vi ‏19 KB

  • Display Format (Video) Frames problem

    The timecode display when set to frames is not working correctly in CS4.
    When you specify Frames instead of timecode it does not change.
    Project Settings>General
    Video | Display Format | Frames
    Can others reproduce this? Seems like a bug to us.
    Link to reference in help:
    http://help.adobe.com/en_US/PremierePro/4.0/WS3E67AF4C-B2A2-4f04-90B4-F8CCFB74B144.html

    >Is there an official problem area that I can report this
    FAQ:How/Where do I report a bug?
    Cheers
    Eddie
    PremiereProPedia   (
    RSS feed)
    - Over 300 frequently answered questions
    - Over 250 free tutorials
    - Maintained by editors like
    you
    Forum FAQ

  • Cannot change precision of digital display of a numerical control

    Hi,
    This may be a stupid question. But in the attched slider control, I am unable to set the precision of the digital display. I can only set the precision of the scale. What do I need to do? Thanks.
    Peter
    Attachments:
    Horizontal Fill Slide (numeric control) question.vi ‏9 KB

    In the upper left of the display format tab of the properties dialog box, select digital display.
    I agree that it could be implemented better, for example if you right-click on the digital display ...display format. it should land on the dialog with the digital display selected. It currently does not.
    (as a general rule, you should avoid overlapping controls. It hurts redraw performance)
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    DigitalFormat.jpg ‏42 KB

  • Data display Format issue.

    Hi ,
    I have the following columns for a single item(SingleVO),
    ItemNo, SugQty, OrdQty, Description,
    I would like to display the data in a table(Normal table or in a Advanced Table) with the
    following format. If there are 50 items, First row should display the First Item's
    itemno, sugqty, orgqty and the secondrow should display the description of the first item and third row should display the Second item's itemno, sugqty, orgqty and the fourthrow should display the description of the second item ....etc.
    Column Names:
    |-------------------------------------------------------|
    |Itemno |     SugQty     |     OrdQty     |     
    |-------------------------------------------------------|     
    |<---------Description--------------------------------> |
    |-------------------------------------------------------|
    Data:
    |-------------------------------------------------------|
    |12344 |     63 |     60     |     
    |-------------------------------------------------------|     
    |<---------Dulux Paint No2----------------------------> |
    |-------------------------------------------------------|
    |12345 | 98     |     100 |     
    |-------------------------------------------------------|     
    |<---------Table set ------------------------> |
    |-------------------------------------------------------|
    I tried with advanced table merging functionality, i couldn't get this type of display.
    Pointers are appreciated.
    (Since we are doing this application for Mobile devices we need to get this kind of display)
    Thanks.
    With Regards,
    Kali.
    OSSI.
    Format change.
    Message was edited by:
    Kalimuthu V
    Message was edited by:
    Kalimuthu V

    Thanks Ranjit,
    We build the table dynamically using rows and columns with the required spans.
    So that we could achieve the same display format.
    Thanks.
    With Regards,
    Kali.
    OSSI.

  • Problem in reading the row values in table display format.

    Hi All
       I created UI asTable display format using three columns( name, email and resume ).
    In this Resume column type is Link to Action. This entire column contains text as Resume  - this element type is Link to action.
    When click on Resume that respective row values I have to capture.
    I have used following code, but It is capturing based on lead selection. ( On the UI, lead selection row is different and clicking on Resume row is different ).
    DATA lo_nd_email TYPE REF TO if_wd_context_node.
      DATA lo_el_email TYPE REF TO if_wd_context_element.
      DATA ls_email TYPE wd_this->element_email.
      DATA lv_email_ref LIKE ls_email-email_ref.
    navigate from <CONTEXT> to <EMAIL> via lead selection
      lo_nd_email = wd_context->get_child_node( name = wd_this->wdctx_email ).
    get element via lead selection
      lo_el_email = lo_nd_email->get_element(  ).
    lo_el_dashboard_1->get_attribute(
        EXPORTING
          name =  `NAEM`
        IMPORTING
          value = lv_name ).
    Please help me on this ..thanks in advance....

    Hi,
       Just declare a variable in the parameters of the method,which u declare for the cell action.
    CONTEXT_ELEMENT      type ref to                      CONTEXT_ELEMENT         as importing paramter
      code:
        context_element->get_static_attributes(
          IMPORTING
            static_attributes = stru_sflight ).
    this will surely solve ur problem
      regards,
    Madhu

  • Date and number display format

    Hello all,
    I am new to Adobe Form, and I am quite unimpressed with how difficult it is to do the most simple things.
    I have managed one way or another to solve all my problems until now, but this one got me stuck.
    I have date and number fields in my form, and here is what I want to do but cannot:
    - I need these fields to be displayed using the defaults date and number settings of the SAP user who is generating the form. This one is really hard for me to figure out.
    - I need some other fields to be displayed in a specific format depending on a variable in the context of my form. I imagine this could be done using scripting, but how to change the display format of a field via scripting?
    Anyone has an idea of how that can be achieved?
    Thank you.

    Hi Thomas,
    For these kind of issues you will get many answers if you search the forum.
    If your requirement is to display the current date in the form, just drag and drop the "Current date" UI element from the Library palette -> Custom.
    If it is to get the date from SAP and display, pass date to the context node and just drag and drop the field into the form from the data view.
    Check the following wiki by Chintan. It explains some common scenarios in javascript.
    [JavaScript Part 1|http://wiki.sdn.sap.com/wiki/display/ABAP/JavaScriptforCommonScenarios-PartI]
    [JavaScript Part 2|http://wiki.sdn.sap.com/wiki/display/ABAP/JavaScriptforCommonScenarios-PartII]
    Use an 'if' condition, check the value and based on the value you can make the field hide/visible in the form.
    Hope this will help.
    Thanks & Regards,
    Sanoosh

  • String Display Format Specifiers?

    I am aware that numerics have display format specifiers (as shown in picture), but I'm wondering if there's a similar function for getting the display formats of strings?
    I have shown what I want the output to be (although that output was clearly not generated by the code!). So, can I replace the ???'s with some valid format specifiers? 
    a.lia-user-name-link[href="/t5/user/viewprofilepage/user-id/88938"] {color: black;} a.lia-user-name-link[href="/t5/user/viewprofilepage/user-id/88938"]:after {content: '';} .jrd-sig {height: 80px; overflow: visible;} .jrd-sig-deploy {float:left; opacity:0.2;} .jrd-sig-img {float:right; opacity:0.2;} .jrd-sig-img:hover {opacity:0.8;} .jrd-sig-deploy:hover {opacity:0.8;}

    Thanks for the reply! Well, yes, I'm aware of one "bad" way this can be accomplished, by using the "Text.Text" property of some dummy string indicators:
    Instead, I'm wanting some cleaner syntax. Needing to introduce a dummy indicator just to hijack a property of that object is a bit messy.
    Looking at my example, one might argue "Well you only need one dummy string in a For Loop of 4 iterations, setting the Display Style from 0-3. That way you don't need four dummies." Right, but the principle remains... I'm interested in a Format Specifier (or potentially a VI hidden in vi.lib?) that eliminates the need for a dummy indicator.
    a.lia-user-name-link[href="/t5/user/viewprofilepage/user-id/88938"] {color: black;} a.lia-user-name-link[href="/t5/user/viewprofilepage/user-id/88938"]:after {content: '';} .jrd-sig {height: 80px; overflow: visible;} .jrd-sig-deploy {float:left; opacity:0.2;} .jrd-sig-img {float:right; opacity:0.2;} .jrd-sig-img:hover {opacity:0.8;} .jrd-sig-deploy:hover {opacity:0.8;}

  • How to change date picker display format?

    Default display format is 01-JAN-09 for date picker.
    How can I change it to
    Jan 21, 2009
    Thank you.

    If you need use your format for all data pickers in your application you can set it via:
    Go to
    Shared components ->Definition->Globalization (Tab) -> Application Date Format SET to Mon DD,YYYY
    and in the item Display as set "Data Picker (use ppplication format mask)"
    If you need set format to some data picker you have to go to your data picker item and Display as set "Data Picker (use item format mask)"
    and
    Go to Source region in this item and set Format mask field Mon DD,YYYY

Maybe you are looking for

  • GR and IR issue

    Hi All, We are facing issue, when IR is posted before GR, the GR is taking different price. this price is not the PO price nor IR price. Can please let me know why this differences and what is the standard process. GR has to create first then IR?

  • How to find the BW system / version details - Urgent Please

    Hi, Our BW system version is 3.0b.  I would like to know other details like portal version,IGS and other associated details. Can anyone help me to find the details please. Thanks, David.

  • Personnel no. in confirmation screen

    Hi Everybody, There is a field "Personnel no." in confirmation screens. How to create ne Personnel no.? Is it integrated with HR module or just can we mention the Personnel no. while confirming the operation? Regards Ramakanth

  • Anyone using Lacie NAS with Mac?

    Hi. I'm not sure if this is the right place to post this question. I want to buy a NAS with about 4TB capacity and currently am looking at the LaCie Network Space Max. I plan to move my iTunes library to the LaCie, and load it up with a bunch of othe

  • ORA-01405 in Pro*C Although no Column has NULL Value

    I have a Pro*C program that fetch a cursor from Oracle 8.1.5 into host variables without indicators. I have tried the SQL statement and the SQL will never return any NULL value in any column, however I still got the ORA-01405 error. Any one has any c