Hiding indicator box borders on a PDA

Is there a way to hide the black box of an indicator on a PDA?  I know about the transparency trick on a normal VI, but on a PDA, the black border doesn't disappear.  Thanks.

I haven't used the PDA module in a while, so I don't if any amount of playing with the control will help you, but you can try using the picture control to create your display.
Try to take over the world!

Similar Messages

  • Printing front panel of VI - no borders appear around the indicator box values

    Dear readers,
    I am using Labview 6.1 on a pentium PC with adequate memory etc. I've been trying to print out the front panel of my VI using a postscript printer and the post script printing options available in the Labview. I notice that the printed front panel doesn't show the rectangular borders that is supposed to surround the values contained in indicators and controls.
    Apart from this problem, everything looks good, such as it prints out in the way that I want...with nice white background to not waste ink.
    Could someone please advise me on what options to set up in order to print the borders around the indicator box values? Thanks very much for any help.
    I noticed that for
    an older Labview for the apple Mac, namely Labview 4 for the Mac, you can just print the window of the front panel and everything comes out wonderful....you get the borders around the indicator and control box values.
    Thanks again.
    Kenny Leong

    Hi Mike!
    Thanks for replying to my post. Greatly appreciated. Is it possible to set the colours for the indicator edges? I'll attach a screen capture of my front panel, and also a digi-pic of the print out. The printout is ok except there's no borders around the indicator values. I printed it out on a hp laserjet 6MP printer as well as on a hp 4050 printer and the printed panels have no borders around the values. I'll attach my front panel vi too. Thanks a lot Mike.
    Kenny Leong
    Attachments:
    labview_panel_screencapture.jpg ‏129 KB
    labview_printout.jpg ‏236 KB
    dip_res_resultswindow.vi ‏199 KB

  • Tab characters in a string indicator box

    I have a string indicator box and would like to make text on different lines match up. When I try using the tab character or a \t I only get a single space. Is there a trick to making the text line up?

    Whenever the string indicator is too lame for my purposes I usually go with the ActiveX text box.

  • May I know how to change the color of texts inside the indicator box?

    Can anyone tell me how to change the color of texts inside the indicator box? I have tried to use property node but not really know how it functions.
    In fact, I am writing a program for which the number inside indicator on front panel will show red color if the measured value can't reach the requirement. I am using LabView 6.1 Professional
    Thank You for your attention!!!!!!

    Simply use a property node with "NumText.TextColor" and wire the correct color depending on your test result.
    The attached simple example (LV 6.1) lets you change it from the front panel. In your case, you would use your test output instead of a FP switch, of course. Message Edited by altenbach on 05-25-2005 09:05 PM
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    TextColor.vi ‏18 KB

  • How to create a non hiding dialog box in swing

    Hi there,
    I want to create a non hiding Dialog box similar to MS Word Find/Replace dialog.
    The Dialog should not hide when the focus is lost. Instead it should become inactive & should remain on the top.
    Could someone please let me know how to create such a dialog in Swing?
    You help is highly appreciated.
    Thanks
    Rakesh Nagar
    [email protected]

    have a look at -
    http://forum.java.sun.com/thread.jsp?thread=327331&forum=57&message=1331793
    ManishRaje.

  • I have a old excel file that does not show hiding cell boxes on my Mac.

    I have a old excel file that has some hiding info. in some of the cell boxes.  I can not see them on my Mac computers.  When I click on the cells to see the hidden info. it does not show up.

    Are you using Mac OSX version of Excel or the Windows version of Excel?  Regardless being specific to Excel, it would be best to ask in the Microsoft Office forums.
    Microsoft Office for Mac forums
    http://www.officeformac.com/productforums/
    Microsoft Office for Windows forums
    http://answers.microsoft.com/en-us/office

  • Hiding text box based on check box checking

    Hello,
    I have a jsp in which based on whether the check box is checked or unchecked I want to hide or show a text box. I am including the text box in a div tag & calling a javascript function to set the style of the div to hidden or shown based on whether the check box is checked or not. although i am getting the correct values in the alerts the text box is not getting hidden.
       <td class="label"><label for="chk1"><gbms:message key="lblSearchforDeletedCustomer"/>:</label></td><td class="input">
                  <html-el:checkbox property="chk1" value="N" tabindex="3" onclick="javascript:checkboxClicked(document.forms['formCustomerOrVehicleMaintenance'])" onfocus="fnShowError(document.formCustomerOrVehicleMaintenance.chk1);"></html-el:checkbox> <gbms:message key="chek"/> 
                                 </td>
                                 <div id="delDateDiv" style:hidden>
                            <td class="label"><label for="txtDeleteDate"><gbms:message key="lblDeletedAsOf"/>:</label></td><td class="input">
                 <html-el:text property="txtDeleteDate" size="6" maxlength="40" tabindex="3" onchange="fnChanged()" onfocus="fnShowError(document.formCustomerVehicleMaintenanceDelete.txtDeleteDate);"></html-el:text> <a href="#" onclick="cal1xx.select(document.forms[0].txtDeleteDate,'anchor1xx','MMddyy'); return false;" name="anchor1xx"><img src="<%=request.getContextPath()%>/css/common/calendar.gif" border="0" style="cursor: hand"></a><gbms:help jsp="customerVehicleMaintenanceDelete" module="admin" languageCode="<%=request.getLocale().getLanguage()%>" field="DeletedAsOf"/>
                        </td></div>javascript function being called..
    function checkboxClicked(aThis)
                        var aform = document.forms['formCustomerOrVehicleMaintenance'];
                        var aDiv = document.getElementById('delDateDiv');
                        alert(aDiv.style.visibility);
                        alert(aDiv.innerHTML);
                        alert(aform.chk1.checked);
                        if(aThis.chk1.value == true)
                             aform.txtDeleteDate.value = '';
                             aform.txtDeleteDate.disabled = false;
                             aDiv.style.visibility = 'visible';
                        else
                             aform.txtDeleteDate.value = '';
                             aform.txtDeleteDate.disabled = true;
                             aDiv.style.visibility = 'hidden';
                   }

    in my javascript function the value returned is true when checkbox is checked & false when it is unchecked. visibility is also giving correct value in the alert. but still field is not hiding
              function checkboxClicked()
                        var aform = document.forms['formCustomerOrVehicleMaintenance'];
                        var aDiv = document.getElementById('delDateDiv');
                        alert(aDiv.style.visibility);
                        alert(aform.chk1.checked);
                        if(aform.chk1.checked)
                             aform.txtDeleteDate.value = '';
                             aform.txtDeleteDate.disabled = false;
                             aDiv.style.visibility = 'visible';
                             alert("inside if");
                             alert(aDiv.style.visibility);
                        else
                             aform.txtDeleteDate.value = '';
                             aform.txtDeleteDate.disabled = true;
                             aDiv.style.visibility = 'hidden';
                             alert("inside else");
                             alert(aDiv.style.visibility);
                   }

  • Text Box borders take too long to download

    Can anyone help me out. I have a web site (www.ravensfc.com) If you look on the site the white lines around the text boxes are the last to load and seem to hold up the site. I have used html optimiser but this just seems to cut the image size. I was suprised that iweb seems to save these as images rather than html.
    If anyone can offer me advice that would be most helpful.

    Welcome to the Apple Discussions. That's one of the problems with some of the bells and whistles of iWeb. As you discovered many get converted to image files which slows down the page loading. for example your Sat 1 page has 59 files to load. You might look into slimming down the page by removing the borders, etc. That will help browsers from the darkside to access your site more efficiently.
    OT

  • Hiding Information Box from Header area

    Hi,
    I am using CRM IC WebClient 2007 . I have an requirement of hiding Alert Information Box / Channel Information box in the header area ( L Shape ) of the application .
    Please provide a solution.
    Manish

    Hi Gregor,
    I want to hide it for Interaction center for all roles. I have done the same by commenting the code in the page "crmcmp_ic_frame_contextareatable.js" of component "CRMCMP_IC_FRAME" .
    If there is any other method for the same , please let me know
    Thanks for asking
    Manish

  • Problems with text box borders, tabbing and saving doc in Acrobat Pro 7.1.0

    When I view my form document in Acrobat Reader, there is a red border around several text boxes
    in which I've selected 'NO border'
    Also, I've selected 'column order' for tabbing, but tabs continue to function in order in which I inserted form item (text box, check box or radial button). Since I didn't insert these consecutively, tabs no jump all around the form instead of proceeding in order from top to bottm and left to right.
    I've checked for Mac Acrobat Pro updates and see that there are three  - 7.1.1, 7.1.3, and 7.1.4, and am downloading them for install.
    Do any of the updates fix these problems? Or how can it be fixed?
    On opening document in Reader, I also get a message informing that document cannot be saved with changes and must be printed, even though I've created it with fillable forms.
    Is there some setting for allowing document to be saved?
    I want to be able to have recipient be able to download form, fill it out, save changes, attach to email and return it to me.

    This has been a problem since version 8 on the mac. Acrobat 7 on the mac worked fine with the right side trim but not on the PC.
    We are still having this problem with Acrobat 9.4.0 on the Mac & PC.
    This has now been an issue for 2 versions of Acrobat Pro.(8 & 9)
    Being in Pre Press and having to constantly set the trim for jobs, this is now taking up too much time and costing money.
    Please fix this Adobe.
    and on another note. how hard would it be to display the trim (if set) next to where the page size is?
    If the trim is set it should display it! why should we have to go to document/crop pages>trim.
    Im in a busy Pre Press Dept and the amount of times you have to check a trim size is stupid.
    I always set prefs to display crop / trim / and bleed boxes and this helps but it should display it if its set.
    Thanks
    Hope this is resolved soon.

  • How to get rid of black box borders that occur around text

    When ever I type ANYTHING in emails, Pages, I get this irritating black box that shows up around paragraphs.  How do I get rid of this once and FOREVER?

    Press the key combination command-F5 to deactivate VoiceOver. If that doesn't work, proceed as follows.
    For OS X 10.7: From the menu bar, select
     ▹ System Preferences ▹ Universal Access ▹ Seeing ▹ VoiceOver: Off
    For OS X 10.8: Select
     ▹ System Preferences ▹ Accessibility ▹ VoiceOver
    and uncheck the box labeled Enable VoiceOver.

  • Why do these black letter box borders appear?

    Hi, I created a stop motion AVI file which I imported into Sony Vegas and then exported into PhotoShop. When I export from Sony Vegas into photo shop, thses black letter box edges appear on the video file, as seen on the lefthand image.
    If anyone could tell me what they are and how to get rid of them, I'd be very grateful.
    Thanks,
    Chris

    You know you're posting in the forum for FrameMaker publishing software,
    right, not a Photoshop or video forum? To it's not really the right
    audience.
    That said, it looks to me as if your image is a 4x3 aspect ratio video set
    into a 16x9 canvas -- the black boxes are the dead area in which you don't
    have an image. To fix it, correct the size of the canvas or frame size to
    match the video images.
    Art Campbell
              [email protected]
      "... In my opinion, there's nothing in this world beats a '52 Vincent and
    a redheaded girl." -- Richard Thompson
                                                          No disclaimers apply.
                                                                   DoD 358
    I support www.TheGrotonLine.com, hyperlocal news for Groton MA.

  • Hiding Command Box

    Hi,
    I have imported the Best practices for EP package. In the package we have webgui transactional iviews. my concern is when i run the iview i can see the command box and from that i can run other transactions. I want to hide the command box so that user can run only that particular transaction.
    using webgui (ITS) this can be done by setting the service parameter ~NOHEADEROKCODE = 1. But when we import the business package where do we need to set this service parameter.
    Is there a way to do it?
    Thanks in advance,
    Lakshmi.

    finally i had a chance to try it out myself.
    for some reason when you specify in the iview application parameter its not working .
    i went to sicf, and added this as the parameter in gui link and its working as expected (command box is hidden)
    I am trying out, if i come across anything i will post it here.
    also when i tested it in browser like below
    sap/bc/gui/sap/its/yraja?sap-client=023&~noheaderokcode=1 its working as expected, but for some reason it doesnt work with iview application parameter.
    Regards
    Raja
    Message was edited by: Durairaj Athavan Raja

  • In Captivate 4 swf output, box borders break up. How can I prevent that?

    I'm working in Captivate 4. If I capture a screen that includes a box with a thin border, the border sometimes breaks up in the published swf. Parts of the border are missing, and lines display where they shouldn't. (See included image.) Anyone know how I can prevent that?
    -Stuart

    I'd suggest going into Edit - Preferences - SWF Size and Quality.  Try de-selecting the Advanced project compression check box.
    Then re-publish.

  • Hiding Dialog Box

    Hi All,
           I have a custom buttom on a list tile. I am inserting data into the database using sBdoc on clicking the button. It is working fine.
    But the thing is, when I try switch over to some other tileset, it is asking "Unsaved Data, Would you like to save?". If I say "Yes" then again the data is inserting into the table with default values. I do not want this dialog box when I goto other tile sets. How can I hide this dialog box or Is there any alternative for this?
    Anybody plz help me out.
    Thanks
    Mateen

    Hi Mohammed
    As the others said the dialog box is popping up automatically as long as there are unsaved, but dirty business objects. To avoid the popup, you need to make sure that there is no such object. When do the business objects become dirty in your application? It sounds like it happens onLoad of the business object when you default / prefill some attributes (check when the save button becomes active, best during debug, to see when your BO's become dirty).
    You have the following options (2. and 3. if you find the dirty objects):
    1. Perform a save (a general mcore.save, not a bo.save)
    2. Save all dirty business objects
    3. If you are sure that the data does not need to be saved, you can do the following
    (loop through the collection)
    if myCol.item(i).isdirty then mycol.item(i).dirty = false
    (end loop)
    Regards, Kai

Maybe you are looking for