3D Graph axis font property missing

I just updated to LV6.1 and now I have a broken VI in my application. One of my displays uses the 3D graph and when formatting data for display, I set the font size of the graph axes. This worked in 6.0.2 but in 6.1 apparently the font refnum no longer has any properties. See attached file for an example of what I used to do. Thanks
Attachments:
FontProperty.vi ‏22 KB

spacewire,
Thank you for reporting this bug, but it is already known to our R&D department and the fix will be released with the next set of the ActiveX components (the error is not in LabVIEW, but in the ActiveX controls themselves which affects not only LabVIEW, but VB, LabWindows/CVI, and others as well). There is no set date for this product at this time.
For a workaround, I would suggest removing thw cw*.ocx files from C:\Windows\system or C:\WinNT\System32. Then I would run the repair utility for LabVIEW 6.0.2 (in Add/Remove Programs) and tell it to only repair if the file is missing. This will add the controls that shipped with LabVIEW 6.0.2 back on to the system and solve this error.
Randy Hoskin
Applications Engineer
National Instruments
http://www.
ni.com/ask

Similar Messages

  • Xy graph axis number font sizes.

    sorry see my earlier xy graph axis font post for the details but what I really want to do is change the size of the font.
    thanks.

    Property node properties-> X (or Y) Scale -> Marker -> Font -> FontSize

  • Mandatory attribute property missing problem

    Hi All,
    I tried to do the simple display output, but it can't work.
    My code is as below;
    <HTML>
    <BODY bgColor="#c8d8f8>
    <form action="webapps\ROOT\form.jsp" method=POST>
    <center>
    <table cellpadding=4 cellspacing=2 border=0>
    <th bgco;or="#CCCCFF" colspan=2>
    <font size=5>User Registration</font>
    </th>
    <tr>
    <td valign=top>
    <b>First Name</b>
    <br>
    <input type="text" name="LName" size=15"></td>
    <td valign=top>
    <b>Full Name</b>
    <br>
    <input type="text" name="FName" size=15"></td>
    </tr>
    <tr>
    <td valign=top>
    <b>Password</b>
    <br>
    <input type="text" name="Passwd" size=15"></td>
    <td valign=top>
    <b>Telephone</b>
    <br>
    <input type="text" name="Tel" size=15"></td>
    </tr>
    <tr>
    <td valign=top>
    <b>Password</b>
    <br>
    <input type="text" name="Passwd" size=15"></td>
    <td valign=top>
    <b>Telephone</b>
    <br>
    <input type="text" name="Tel" size=15"></td>
    </tr>
    <tr>
    <td valign=top>
    <b>Titile</b>
    <br>
    <input type="text" name="Title" size=15"></td>
    <td valign=top>
    <b>Department</b>
    <br>
    <input type="text" name="Dept" size=15"></td>
    </tr>
    <tr>
    <td valign=top>
    <b>Email</b>
    <br>
    <input type="text" name="Email" size=15"></td>
    <td valign=top>
    <b>Access</b>
    <br>
    <input type="text" name="Accesstype" size=15"></td>
    </tr>
    <%-- Create the bean only when the form is posted --%>
    <%
    if (request.getMethod().equals("POST")) {
    %>
    <jsp:useBean id="formHandler" class="com.jguru.FormBean">
    <jsp:setProperty name="formHandler" property="*"/>
    </jsp:useBean>
    <p>
    <hr>
    <font color=red>
    You submitted : <p>
    <b>Login Name:</b><br>
    <jsp:getProperty name="formHandler" pripoerty="LName"/><br>
    <b>Full Name:</b><br>
    <jsp:getProperty name="formHandler" property="FName"/><br>
    <b>Password:</b><br>
    <jsp:getProperty name="formHandler" property="Passwd">/><br>
    <b>Telephone:</b><br>
    <jsp:getProperty name="formHandler" property="Tel">/><br>
    <b>Title:</b><br>
    <jsp:getProperty name="formHandler" property="Title">/><br>
    <b>Department:</b><br>
    <jsp:getProperty name="formHandler" property="Dept">/><br>
    <b>Email:</b><br>
    <jsp:getProperty name="formHandler" property="Email">/><br>
    <b>Access:</b><br>
    <jsp:getProperty name="formHandler" property="Accesstype">/><br>
    <%
    %>
    </font>
    </body>
    </html>
    The error message is
    Internal Servlet error
    org.apache.jasper.compiler.ParseException: getProperty:Mandatory attribute property missing
    Thanks in advance for any assistance.

    Nick,
    Thanks for your help.
    But I also face another problem that is
    "unable to load class com.jguru.FormBean" when I tried to call another jsp.
    Here are my code :
    package com.jguru;
    public class FormBean {
    private String LName;
    private String FName;
    private String Passwd;
    private String Tel;
    private String Title;
    private String Dept;
    private String Email;
    private String Accesstype;
    public FormBean() {
    LName="";
    FName="";
    Passwd="";
    Tel="";
    Title="";
    Dept="";
    Email="";
    Accesstype="";
    public String getLName() {
    return LName;
    public String getFName() {
    return FName;
    public String getPasswd() {
    return Passwd;
    public String getTel() {
    return Tel;
    public String getTitle() {
    return Title;
    public String getDept() {
    return Dept;
    public String getEmail() {
    return Email;
    public String getAccesstype() {
    return Accesstype;
    public void setLName(String x) {
    LName = x;
    public void setFName(String x) {
    FName = x;
    public void setPasswd(String x) {
    Passwd = x;
    public void setTel(String x) {
    Tel = x;
    public void setTitle(String x) {
    Title = x;
    public void setDept(String x) {
    Dept = x;
    public void setEmail(String x) {
    Email = x;
    public void setAccesstype(String x) {
    Accesstype = x;
    Thanks.

  • 3D Plot Properties Axis Format Property update bug

    Tested in LV 2011, Windows XP.
    If you try to change an axis format property (say Digits of Precision) and switch to another axis using the pull-down list box, the property is not updated, even though it is also not applied to the new axis.
    In other words: the default precision is 2 and I want to change it to 1 for the X and Y axes.
    I select the X axis, change the Digits value to 1. This applies it to axis 1. Good.
    I now select the Y axis: the Digits value does NOT change (it stays 1) but the Y axis precision does NOT change either (it stays 2). Not good.
    You have to actually edit the Digits field an press enter to update the value ON THE GRAPH.
    There might be some similar bugs in other properties.

    Hi X.!
    Thanks for posting your find. I would love to take a look at this behavior. There are multiple 3D graph property dialogs depending on your implementation. I've looked at three examples and they each have a slightly different menu options under format properties. Can you point to or post an example that duplicates the behavior?
    Best Regards,
    Andrew S
    Application Engineering Specialist
    National Instruments

  • Bug in Graph Legend Height Property

    Hi All,
    I am trying to set the height of the graph legend via property node and it seems it is not setting it to the input value. I set the value of the height and read it back and they do not match.
    Is it a bug in the property node?
    I have attached the vi to this post. Pls take a look at it.
    Thanks,
    Ritesh
    Attachments:
    BUGInLegendHeightProperty.vi ‏24 KB

    I don't think it would be a bug.  The legend height probably needs to be some multiple based on the font size of the legend.

  • Fonts are missing in keynote since I use iOS5? help!

    in all my slides for an important presentation the text is disordered because fonts are missing since I downloaded iOS5.
    Can somebodiy help me?

    Judy McCrorey |
    Account Manager and Support
    Unit 1 14 Rothcote Court Burleigh Heads QLD 4220 | Telephone: +61 07 5507 5200
    PO BOX 450 Mudgeeraba QLD 4213 | Facsimile: +61 07 5522 0163
    Email: [email protected] | Web: www.copyline.com.au
    This message (including attachments) is intended for the addressee named above. If you are not the addressee named, you must not disseminate, copy, communicate or otherwise use or take any action in reliance on this message. If you have received this message in error please notify the sender and delete from any computer. Whilst all care has been taken, Copyline disclaims all liability for loss or damage to person or property arising from this message being infected by computer virus or other contamination. We thank you for your co-operation.
    HI SnakEyz02, a screenshot of my gobbledygookness below in dreamweaver. Your help greatly appreciated!

  • Cmap for this font is missing

    I wrote some code using the following  PDF API call
                encoding = PDSysEncodingCreateFromCMapName(cmapAtom);
    This throws an exception
    The CMAP for the existing font is missing or something that effect. I am using UniJIS-UTF16-H as the CMAP designation and ArialUnicodeMS for the font.
    I have the PDFLDataRec data structure set up to look for the resource directories that contain the information, CMAP,Font, Unicode, but this doesn't help.
    I cal PDFLInitHFT() to pass this information to th PDFL API library to initialize it but it doesn't seem to help. What am I missing?

    Since this is a question about PDFL, I recommend you file a report via your support methods (Datalogic or Adobe).

  • Open, save and then fonts are missing

    I am receiving InDesign 5.5 files from clients. I can open them, make changes, do a save-as and close. When I immediately re-open the file, I get an error that most of the fonts are missing. I am using Linotype Font Explorer X, v 1.2.3 and I understand it is the latest version. Can someone tell me why this is happening?

    Umm. I will have to check. I may be saving just outside of their job folder in the our enclosing job folder. We put client files/folders into a job folder with that job number on it. When doing the "save as", normal procedure is to save just outside the original file folder, leaving original client files untouched and our files separate from theirs. I may have tried saving into the client folder, but will go back and try that.

  • All fonts are missing in indesign

    I closed my file last night with master pages items and text layers locked in the layers pallette.
    The file is to the point that I have master pages set with columns, and guides, and pages, and footer with text.  It is all layed out with images, ready to start typography.  I used Myriad pro, and I think Bell ( this may have been brought in from dafont, not sure).
    When I opened the file this morning it said that the fonts were missing.  I tried to find the missing fonts, but ALL the fonts are missing in the font selection window.
    This was when I realized that the layers were locked.  I dont know if this had anything to do with it, but Ive never used layers before, so assume it is a connection.
    I tried opening a new document and there are no fonts available there either.  It says times, but you cant change it.  It is showing pink backgound like when fonts are missing, and just Os'.
    I opened illustrator to see if the fonts are available there, and they are, no problem.  It is just indesign that is affected. 
    Can anyone help?
    Mary

    Try these solutions
    http://forums.adobe.com/thread/526990
    http://forums.adobe.com/thread/526991

  • How to tell what fonts are missing in a Photosohp CS5 document?

    Hello!  I have received some work from a graphic designer.  I need to modify some of the text in the document.  When I open the document I get an error message:
    Some text layers might need to be updated before they can be used for vector based output.  Do you want to update these layers now?  [Update] [No]
    If I click [Update] it replaces the font with Myriad Pro.  If I click [No] the text looks the way the designer intended, but I have the exclamation mark-triangle symbol over the layer with the text.  If I try to edit the text I get another warning:
    Editing or rendering the text layer "Text Layer" will cause its layout to change.  Continue?  [Cancel]  [OK]
    The same behavior described above occurs.  If I click [Cancel] I obviously can't edit the text.  If I click [OK] it changes the font to Myriad Pro.
    I would like to determine what font the layer is using.  I could swear that previous versions of Photoshop would tell me what fonts were missing when I opened a document.  I can't use the text tool to select the text without it changing the font.  Other posts have mentioned using the text tool to look at the text drop-down to find a greyed-out font which indicates the missing font.  I do not have that.  I only have perhaps 200 fonts installed.  Can anyone tell me how to determine what fonts a .PSD document is using?  I would prefer not to bug the graphic designer if possible.  Thanks much!
    ~ Dan

    Not sure why you are getting ""Font is present on the system but requires a layout change.", usually you do not get that instead the name of the font shows.
    We use extensis Universal Type Client, so the fonts load automatically upon opening files, and never really get missing fonts in Photoshop.
    Actually fontbook has auto font loading if you want to give that a try. Fontbook >> Preferences

  • I am using InDesign CC and added Garamond premier pro font. This has worked for months, now suddenly my entire book is  highlighted in pink and my font is missing! I get the message that the font is currently unavailable on my computer, how can i get it b

    I am using InDesign CC and added Garamond premier pro font. This has worked for months, now suddenly my entire book is  highlighted in pink and my font is missing! I get the message that the font is currently unavailable on my computer, how can i get it back?

    BlazingRiver wrote:
    So my computer is running on OSX but my question is if any of the viruses on my windows partition can still run and communicate information to their 'master' as there is still a supply of electricity? Sorry if its obvious.
    Here's a positive thing: Windows viruses can't run on OS X, but they can be transferred from OS X to other PCs (only if you have them on the OS X volume).
    BlazingRiver wrote:
    1. How could a trusted source e.g. Google and Steam contain viruses if they are downloaded from the original source? and
    You could get a virus from a different source that infected Steam and Chrome without any problem. Viruses normally try to infect as many files and programmes as possible.
    BlazingRiver wrote:
    2. Can iOS devices get viruses and I know this is probably in the wrong but 3. What anti-virus scanner and remover tool do you recommend for windows. The only one I am familiar with is Kaspersky?
    iPhones, iPads and iPods touch can't get viruses but they can transfer them to other PCs. For Windows, I recommend Microsoft Security Essentials

  • Adobe Naskh Medium Font is missing

    Hey there! I reinstalled Photoshop after a fresh installation of Windows 7. Unfortunately all Adobe Fonts are missing. I'm specifically searching for the Adobe Naskh Medium font as the contract for my weddingphotohraphy is written in this font.
    Where can I download those missing font? Is this even possible? What could be the error?

    Without knowing exactly what fonts and how the file was created we can't tell you much. Fonts have variants and versions just like anyone else and if someone e.g. uses an old TrueType or PostScript font and not an OpenType font substitution will be almost inevitable. Just the same things like faux bold and italic can cause unwanted font substitutions as can many other things like different language settings...
    Mylenium

  • Font is missing

    Hello Community - My problem is with "Adobe Annual". I have been working with it successfully for 6 months filling in the forms saved to "my documents" but yesterday it changed. It used to allow me to pull up a saved document and type into it so I could efficiently and neatly fill the blanks... It still allows me to fill in my initials or signature but will not allow me to fill in the typed words I need to enter any longer.     When I try to fill in the form a pop up window reads: "The encoding (CMap) specified by a font is missing."   Please help...

    Hi;
    This Forum is for an online service new for Adobe called "Adobe Fill & Sign", there is not a product called "Adobe Annual", did you mean Adobe Acrobat?  Maybe add a screen shot using the camera icon in the forum to upload it here of the application you are having trouble with and we can move your post to the appropriate forums.
    Thanks,
    Josh

  • Since the last update, every time I open "Numbers" I get a notice that a font is missing.  How can I stop seeing this warning?

    Since the last update for "numbers", everytime I open numbers I get a notice that a font is missing.  I don't care that it's missing and I would like to not see that message.  How can I get rid of it?

    A document you had open at the time you quit Numbers has a font that you do not have (probably Calibri).  You can change the font to one you have OR close the file before you quit Numbers.  Numbers will open files you had open when you quit.
    Looks like:
    The other thing you can do is check the box "Close windows when quitting an application" in "System Preferences > General"

  • How to export a PDF to a word document? at the moment it came up with "The encoding (CMap) specified by a font is missing ????? what can I do?  thanks

    How to export a PDF to a word document? at the moment it came up with "The encoding (CMap) specified by a font is missing ????? what can I do?  thanks

    Hi frenchiem,
    This is due to the PDF file cannot display the original fonts. To fix it, creator should create the PDF file with the embed font option enabled. Thus, user can open the file on any platform with the same layout. Or the Acrobat product can display them after you install the appropriate font support package on the client side.
    Regards,
    Rave

Maybe you are looking for

  • I am having a problem with Windows Fusion installed on a MacBook.

    I am having a problem with Windows Fusion installed on a MacBook OS 10.  When attempting to use a Browser, (either IE, or Chrome), under Windows Fusion, I cannot browse to ANY page except Gmail.com. I checked all security settings, and found no probl

  • Use of Regular Expressions in BI Query Designer

    Hello All, For a particular requirement in Inventory, I have the following to be achieved: If at the input selection screen, if Plant entered is 'AB12', then it should show batches only startign with 'J' and if Plant entered is 'AB13' then the query

  • Do_handle_data vs do_handle_event

    Hi experts , can we explain differences b/w  Do_handle_data vs do_handle_event

  • Creating Table - Preserve Case

    Hi, While Creating a table in Apex, we get a option PRESERVE CASE (Check Box). What is the function of This Check Box. Thanks. Shijesh

  • Installing UCCX, the wizard dies

      Hi I'm installing UCCX for the first time. Things look OK until i start the initial wizard (after the install). I get to choose "fresh install", add license and i get to type in the AXL user, the JTAPI user and the RmCm user. When i press next the