2012 string copy and paste

In 2012, if I copy and paste from one string to another, the text turns on Bold and Underline.  Does this happen you everyone else?  Is this a bug that has been or need to be reported? 
Solved!
Go to Solution.

This problem existed way before LabVIEW 2012 but because of the random nature, you might not have bumped into it. It is not a new problem.
You are lucky with only bold/underline. Long ago, I got 20pt greek symbol (or similar) font for a while when pasting.
LabVIEW Champion . Do more with less code and in less time .

Similar Messages

  • Can't copy and paste files using RDP session in server 2012

    I'm running windows 8, but I have also verified on a windows 7 machine as well. We have server 2012 installed on a machine
    I use remote desktop to get into. I cannot copy files from my local pc and use paste to get them to the server. I could do this with server 2008. Is there some setting I have to change or does this not work with server 2012?
    FYI, clipboard is checked when I open my remote desktop connection window. If I connect into a win server 2008 r2 machine from the same local machine, I can copy and paste files
    just fine.
    - Michael

    Hi,
    I believe RDS clipboard redirection should be enabled by default also on Windows Server 2012. Is there perhaps is a Group Policy Object active that is configured to disable Clip Board Redirection? Either on the computer or the user OU. If not:
    You did not explicitly state this, but I'm assuming that you are running in Application Mode (meaning you did not install the RD Session Host role) ? If so please check the registry on the Windows Server 2012 destination server and look for:
    HKLM\SYSTEM\CurrentControlSet\Control\Terminal Server\Winstations\RDP-Tcp\fDisableClip
    this should be set to
    0, to make allow Clipboard Redirection
    Also check the key below:
    HKLM\SYSTEM\CurrentControlSet\Control\Terminal Server\Addins\Clip Redirector
    This should have: 
    Name
    REG_SZRDPClip
    Type
    REG_DWORD0x00000003
    If you did run the RD Session Host role, and you have done so using a Scenario Based Deployment (Scenario
    Based Deployment of RDS in Windows Server 2012 ) you will have a Remote Desktop Management Service GUI available as pat of the Server Manager with which you can enable or disable ClipBoard Redirection from within a GUI on a Session Collection level
    or you can use PowerShell
    Using Powershell to install, configure and maintain RDS in Windows Server 2012
    Kind regards,
    Freek Berson
    The Microsoft Platform
    Twitter
    Linked-in
    Wortell company website

  • When I copy and paste from an online chart, some cells that had dashes or hyphens in them in the online chart paste into Numbers cells as dates, e.g., 12-13 pastes as Dec. 13, 2012.

    When I copy and paste from an online chart, some cells that had dashes or hyphens in them in the online chart paste into Numbers cells as dates, e.g., 12-13 pastes as Dec. 13, 2012.  I have tried changing the cell formats for that column from "automatic" to "text", but that doesn't fix it.  Is there a way to copy/paste this information without changing the original characters?

    If you know how many rows/columns you are planning to paste, then make the table that big BEFORE you paste.  In addition select all cells in the table by selecting any cell, then type the key combination <COMMAND>+a (for select all.
    Then use the cells inspector to make the cells formatted as text:
    I hope this helps

  • Create copy and paste string

    hi there, what I would like to do is the following
    enter data into a cell, this searches for information on another sheet(I have work that one out) when the found information is highlighted that info is then copied to that cell
    i can do this by copy and paste but wondered if it could be made simpler ie creating a box/ button that grabs the highlighted info and dumps it in the original cell
    eg type in oranges to cell a1, that searches column on sheet 2 called product, it finds anything call oranges(there may be more than one) I choose which one I click either on it or on a button or something and it dumps that info back to a1 then performs the lookup which I have previously sorted
    i I hope this makes sense
    i am not very knowlegable re using spreadsheets so a simple explanation would be best
    kind regards

    The script below will do something like what you describe:
    Copy into AppleScript Editor, enter your value in A1, and click the green triangle 'Run' button. Your choice in the dialog is then inserted in cell A1.
    If you're doing this a lot you could place it in an Automator Service and assign a keyboard shortcut.  You could also skip the first step of entering a value in the the cell first, and have the script ask you directly, then insert the value for you.
    SG
    property currentTable : "Table 1"
    property searchCell : "A1"
    property lookupTable : "Products"
    property lookupColumn : "A"
    tell application "Numbers"
      set s to front document's active sheet
      set c to s's table currentTable's cell searchCell
      set searchValue to c's value
      if searchValue is missing value then return
      set productList to s's table lookupTable's column lookupColumn's cell's value
      set matchesList to {}
      repeat with i in productList
      if i's contents contains searchValue then copy i's contents to end of matchesList
      end repeat
      try
      set selectedMatch to choose from list matchesList with title "Which product?"
      set c's value to selectedMatch
      if c's value is 0 then set c's value to ""
      on error
      display dialog "No matches. Try again." buttons "Ok"
      end try
    end tell

  • Error while copying and pasting group of activities

    Hi,
    I am getting an error while copying and pasting a group of activities. Can anyone let me know why I am getting this message.
    type : EStringListError
    Event Code : SLDNA-0655-B
    Description : String list does not allow duplicates
    thank you.

    I had the same error and reported it to Oracle. They requested an XER copy and I am waiting for thier response. This problem is for that particular project only. To work around it do the following:
    Create a new project, open both projects, go to wbs view, copy all wbs's from the correpted project to the new project. The new project will work fine and get rid of the correpted one.
    Good Luck.

  • How to cut, copy and paste a tree node in JTree?????

    Hi, Java GUI guru. Thank you for your help in advance.
    I am working on a File Explorer project with JTree. There are cut, copy and paste item menus in my menu bar. I need three EventAction methods or classes to implements the three tasks. I tried to use Clipboard to copy and paste tree node. But I can not copy any tree node from my tree.
    Are there any body has sample source code about cut, copy, and paste for tree? If possible, would you mind send me your sample source code to [email protected]
    I would appreciate you very very much for your help!!!!
    X.G.

    Hi, Paul Clapham:
    Thank you for your quick answer.
    I store the node in a DefaultMutableTreeNode variable, and assign it to another DefaultMutableTreeNode variable. I set up two classes (CopyNode and PasteNode). Here they are as follows:
    //CopyNode class
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    import java.util.*;
    import javax.swing.*;
    import javax.swing.tree.*;
    import javax.swing.event.*;
    public class CopyNode implements ActionListener{
    private TreeList jtree;
    String treeNodeName;
    TreePath currentSelection;
    DefaultMutableTreeNode currentNode;
    public CopyNode(TreeList t){
    jtree = t;
    public void actionPerformed(ActionEvent e){
    currentSelection = jtree.tree.getSelectionPath();
    if(currentSelection != null){
    currentNode = (DefaultMutableTreeNode)(currentSelection.getLastPathComponent());
    treeNodeName = currentNode.toString();
    //PasteNode class
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    import java.util.*;
    import javax.swing.*;
    import javax.swing.tree.*;
    import javax.swing.event.*;
    public class PasteNode extends DefaultMutableTreeNode{
    private TreeList jtree;
    CopyNode copyNode;
    public PasteNode(TreeList t){
    jtree = t;
    copyNode = new CopyNode(t);
    public DefaultMutableTreeNode addObject(Object child){
    DefaultMutableTreeNode parentNode = null;
    TreePath parentPath = jtree.tree.getSelectionPath();
    if(parentPath == null){
    parentNode = jtree.root;
    else{
    parentNode = (DefaultMutableTreeNode)parentPath.getLastPathComponent();
    return addObject(parentNode, child, true);
    public DefaultMutableTreeNode addObject(DefaultMutableTreeNode parent, Object child, boolean shouldBeVisible){
    DefaultMutableTreeNode childNode = copyNode.currentNode;
    if(parent == null){
    parent = jtree.root;
    jtree.treemodel.insertNodeInto(childNode, parent, parent.getChildCount());
    if(shouldBeVisible){
    jtree.tree.scrollPathToVisible(new TreePath(childNode.getPath()));
    return childNode;
    I used these two classes objects in "actionPerformed(ActionEvent e)" methods in my tree:
    //invoke copyNode
    copyItem = new JMenuItem("Copy");
    copyItem.addActionListener(copyNode);
    //invoke pasteNode
    pasteItem = new JMenuItem("Paste");
    pasteItem.addActionListener(
    new ActionListener(){
    public void actionPerformed(ActionEvent e){
    pasteName.addObject(copyName.treeNodeName);
    When I run the drive code, making a copy some node from my tree list, I got bunch of error messages.
    Can you figour out what is wrong in my two classes? If you have sample code, would you mind mail me for reference.
    Thank you very much in advance.
    X.G.

  • Mountain Lion - cannot copy and paste in finder

    Hey,
         I've only just noticed this today and I've done a search but can't find anything so far to help me. I upgraded from lion to mountain lion the day after it was released, not fresh install, upgrade. Basically... I cannot copy files using either cmd+c / cmd+v or using the finder edit->copy / edit-> paste menu. They aren't greyed out. Everytime I try I get the error "The operation can't be completed because you don't have permission to access some of the items.".
    This will happen even with a newly created folder. I can delete files. I can create files. I can drag files in finder without issue but I cannot copy and paste. I'm guessing there are permission issues going on but I don't know where to start.
    Repairing permissions didn't help (I kinda didn't think it would given it only works on system files but thought it worth a go).
    This is an example of the file permissions assigned to a screen grab on my desktop:
    -rw-r--r--@  1 jackwestbrook  staff  
    64257  1 May 19:48 Screen Shot 2012-05-01 at 19.48.27.png
    Even if I blow it wide open with chmod 777 I still can't copy it...
    -rwxrwxrwx@ 1 jackwestbrook  staff  
    64257  1 May 19:48 Screen Shot 2012-05-01 at 19.48.27.png
    These are the permissions assigned to my desktop:
    drwxr--r--+  19 jackwestbrook  staff
    646 19 Aug 18:24 Desktop
    Can anyone offer me some advice on where to start with sorting out this issue?
    Cheers,
    Jack

    Hey, I was really loathed to try reinstalling the OS and something told me that I'd I can drag and drop but not copy and paste there had to be something interfering with the clipboard.
    I disabled Alfred and its clipboard history feature (http://www.alfredapp.com/) and rebooted. Amazingly this fixed my issue. I'm going to email the author in the morning to give them a heads up about this.
    Thanks to both of you for taking the time to offer me advice.
    John Guo - nice tip, wasn't aware of that!
    Ta,
    J

  • Shortcut-Bug in Bridge CS6 for Mac / Bridge cant' copy and paste metadata

    The cmd-keys / shortcuts doesn't work in the file info panel btw. in the xmp / iptc fields (e.g. cmd+c, cmd+v, ...) of Adobe Bridge CS6 (Mac OS 10.6.8 and 10.7.3). You are not able to cut and paste info from one box to another like previous versions.
    This bug only appears in the file info window (opened via alt+i) in Bridge CS6 - if you edit information or metadata in the file info panel in Photoshop CS6, the shortcuts or copy and paste from one field to another works.
    The shortcuts also work under Windows (tested under Vista).
    I noticed this minor bug already one in the Photoshop CS6 Beta more than one months ago. I hoped that this was corrected in the official test version, but unfortunately it is not. Although it is a minor bug, it is IMHO a basic function and would be very helpful in my daily work. Bridge CS6 and ACR 7 are very good and meet my expect ions or needs - it is too bad, that such a small thing is making working with the application a little bit annoying.
    It would be nice, if you could forward this to Adobe engineers that they can fix it.
    Thanks so much!

    Thanks! If there is a workaround or simple solution, I would be very glad if you could inform me.
    Christian
    (signature removed by the Admin)
    Am 14.05.2012 um 13:49 schrieb FrankBiederich:
    Re: Bridge CS6 Mac XMP File Info Panel Bug: can't copy and paste metadata
    created by FrankBiederich in XMP SDK - View the full discussion
    Thanks for your report; we'll look into it.
    Frank
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: Re: Bridge CS6 Mac XMP File Info Panel Bug: can't copy and paste metadata
    To unsubscribe from this thread, please visit the message page at Re: Bridge CS6 Mac XMP File Info Panel Bug: can't copy and paste metadata. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in XMP SDK by email or at Adobe Forums
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.
    Message was edited by: Arpit Kapoor

  • Bridge CS6 Mac XMP File Info Panel Bug: can't copy and paste metadata

    The cmd-keys / shortcuts doesn't work in the xmp file info panel btw. in the xmp / iptc fields (e.g. cmd+c, cmd+v, ...) of Adobe Bridge CS6 (Mac OS 10.6.8 and 10.7.3). You are not able to cut and paste info from one box to another like previous versions.
    This bug only appears in the xmp file info window (opened via alt+i) in Bridge CS6 - if you edit information or metadata in the file info panel in Photoshop CS6 copy and paste from one field to another works.
    The shortcuts also work under Windows (tested under Vista).
    I noticed this minor bug already one in the Photoshop CS6 Beta more than one months ago. I hoped that this was corrected in the official test version, but unfortunately it is not. Although it is a minor bug, it is IMHO a basic function and would be very helpful in my daily work - it is too bad, that such a small thing is making working with the application a little bit annoying.

    Thanks! If there is a workaround or simple solution, I would be very glad if you could inform me.
    Christian
    (signature removed by the Admin)
    Am 14.05.2012 um 13:49 schrieb FrankBiederich:
    Re: Bridge CS6 Mac XMP File Info Panel Bug: can't copy and paste metadata
    created by FrankBiederich in XMP SDK - View the full discussion
    Thanks for your report; we'll look into it.
    Frank
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: Re: Bridge CS6 Mac XMP File Info Panel Bug: can't copy and paste metadata
    To unsubscribe from this thread, please visit the message page at Re: Bridge CS6 Mac XMP File Info Panel Bug: can't copy and paste metadata. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in XMP SDK by email or at Adobe Forums
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.
    Message was edited by: Arpit Kapoor

  • Copy and paste issues - numbers for Ipad

    Since my Numbers for Ipad last updated I cannot copy and paste an interval of cells to my Gmail App, so I can email. It used to work in the orevious version. What should I do?

    You are asking about Numbers for iOS in a forum dedicated to Numbers for OSX !
    Yvan KOENIG (VALLAURIS, France) vendredi 6 janvier 2012
    iMac 21”5, i7, 2.8 GHz, 12 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.2
    My iDisk is : http://public.me.com/koenigyvan
    For iWork's applications dedicated to iOS, go to :
    https://discussions.apple.com/community/app_store/iwork_for_ios

  • Bug: Copying and pasting a htmlText ignores embed font???

    - Adobe Flash Pro CS4
    - Reproducible in Flash player 9 and 10
    There seems to be a bug when copying a string value from a "htmlText" textfield and then pasting it in a standard "text" textField, and then adding that text back into the htmlText textField, which in turn no longer displays any new text.
    For example:
    1. Type "hello" in input textField, and press [Send] button
    2. "hello" appears in the display textField (as htmlText)
    3. From the display textField, copy the word "hello" and paste it into the input textField.
    4. Press [Send]
    5. Now, if embedFont was enabled and assuming that there is a ArialReg font class defined via library, the display textField does not show the 2nd "hello" message, and it no longer display anything new. This is because it was not able to show the text that was embedded as another font. You can tell this by turning off embedFont. Repeat steps 1-4, note that the 2nd "hello" font differs to the 1st "hello" font - which caused the bug as per above.
    Source code (requires ArialReg and fl.controls.Button defined via Library):
    //Copy and paste into your main timeline.
    import flash.events.Event;
    import fl.controls.Button;
    var enableEmbed:Boolean = false;
    var format:TextFormat = new TextFormat();
    format.font = new ArialReg().fontName;
    format.bold = false
    format.size = 12
    format.color = 0x000000;
    format.align = TextFormatAlign.LEFT
    format.underline = false
    var _chatBox:TextField = new TextField();
    _chatBox.multiline = true;
    _chatBox.selectable = true;
    _chatBox.wordWrap = true;
    _chatBox.multiline = true;
    _chatBox.embedFonts = enableEmbed;
    _chatBox.antiAliasType = "advanced";
    _chatBox.tabEnabled = false;
    _chatBox.mouseEnabled = true;
    _chatBox.defaultTextFormat = format;
    _chatBox.width = 260
    _chatBox.height = 300
    _chatBox.type = "dynamic";
    _chatBox.x = 10;
    _chatBox.y = 30;
    _chatBox.mouseWheelEnabled = false
    _chatBox.background = true;
    _chatBox.border = true;
    format = new TextFormat();
    format.font = new ArialReg().fontName;
    format.bold = false
    format.size = 12
    format.color = 0x000000;
    format.align = TextFormatAlign.LEFT
    format.underline = false
    var _chatInput:TextField = new TextField();
    _chatInput.multiline = true;
    _chatInput.selectable = true;
    _chatInput.wordWrap = true;
    _chatInput.multiline = true;
    _chatInput.embedFonts = enableEmbed;
    _chatInput.antiAliasType = "advanced";
    _chatInput.tabEnabled = false;
    _chatInput.mouseEnabled = true;
    _chatInput.defaultTextFormat = format;
    _chatInput.width = 200;
    _chatInput.height = 50;
    _chatInput.type = "input";
    _chatInput.x = 10;
    _chatInput.y = _chatBox.y + _chatBox.height + 5;
    _chatInput.mouseWheelEnabled = false;
    _chatInput.background = true;
    _chatInput.border = true;
    var _chatSendBtn:Button = new Button();
    _chatSendBtn.y = _chatInput.y;
    _chatSendBtn.x = 215;
    _chatSendBtn.width = 55
    _chatSendBtn.height = _chatInput.height;
    _chatSendBtn.addEventListener(MouseEvent.MOUSE_UP, onChatSendBtn);
    _chatSendBtn.label = "Send";
    this.addChild(_chatBox);
    this.addChild(_chatInput);
    this.addChild(_chatSendBtn);
    function onChatSendBtn(mE:MouseEvent):void
        if (_chatInput.text != "")
            _chatBox.htmlText += _chatInput.text;       
            _chatInput.text = "";

    Note:
    _chatBox.htmlText += _chatInput.text;       
    _chatBox.setTextFormat(format);
    will resolve the problem, but it introduces another bug - Using setTextFormat does not allow bold and regular font for embedFonts for htmlText, however defaultTextFormat does. As I need both bold and regular font for the textField, I can't use that workflow.

  • How to copy and paste a document typed in the EpicWrite (esp. a text typed in Kannada)on a Microsoft Word 2007 page?

    02-03-2012
    For last one week, I have been trying in vain to copy and paste a document typed in the Epic Write on a Word 2007 format, so that I can retrieve or modify it anytime without depending on the Internet connection. Whenever, I paste on a webpage, it cannot be edited and when I transfer that on a Word page, only words & figures in English appear and the rest of the text is displayed in blank square boxes.
    How I can overcome this problem?

    Are that pages in Unicode?
    *[http://kn.wikipedia.org/wiki/%E0%B2%95%E0%B2%A8%E0%B3%8D%E0%B2%A8%E0%B2%A1]

  • How to copy and paste vector graphics

    I have a program that draws curves and I would like to copy and paste them as a path into Adobe Photoshop.
    I am using the Clipboard class (Clipboard clipboard = Toolkit.getDefaultToolkit().getSystemClipboard()), but I
    do not know what string I should use for the StringSelection argument in the setContents method. I tried the
    string that describes my curves in PostScript.
    But that didn't even work for pasting into Adobe Illustrator, although Illustrator is capable of opening
    a PostScript file. (However Photoshop only opens a PostScript file as a bitmap, not as a path.)
    With Illustrator, instead of pasting the curves, it just pasted the PostScript text.
    Please help.
    Thanks.

    For me, freehep is the fifth hit when googling "java vector graphics library". But of course I don't get to "[Access hidden information|http://www.copernic.com/en/products/agent/index.html]" without paying up :).
    For a simpler way: since you already say you can save to postscript, make a temporary ps file and export it in a file list (keywords "java drag and drop files"). Perhaps Illustrator then opens the file and the user can copy/paste it there. Otherwise you have to figure out what Illustrator expects on the clipboard and put it there in the same format.
    Another option might be to use some com wrapper to talk to Illustrator directly (but probably need a commercial com wrapper for that).

  • Copy and paste in Swing HTML editor

    Hi,
    I have two related questions:
    1. Is there any detailed documentation on the method insertHTML(HTMLDocument doc, int offset, String html, int popDepth, int pushDepth, HTML.Tag insertTag) in class HTMLEditorKit available? The information included in the API specification is very reduced.
    2. Is there any way to do copying and pasting in an HTMLDocument that preserves text format and does not create a new paragraph?
    Thanks in advance,
    Roberto Moriyon

    Hi kdhkdh,
    In the typical Mac application, including Safari, you can copy items such as text or pictures by selecting the item to be copied and then either using the Edit menu > Copy or the keyboard shortcut Command-C. Paste is accomplished by selecting the location you wish to paste into and then Edit menu > Paste or the keyboard shortcut Command-V. See this article -
    OS X: Keyboard shortcuts - Apple Support
    Thanks for using Apple Support Communities.
    Best,
    Brett L 

  • Copy and paste array between instances?

    I have A.vi and B.vi. The last time I used these was in 8.6. I now have to use them on a machine with 8.2, but A.vi does not work in 8.2 without a bunch of tweaking, so I made it A.exe.
    A.exe builds and recalls files that contain arrays of DaqMx channels. I create long lists of channels once, and then since they are stored to a file, do not have to create them again. In the past, instead of adding code to B.vi to call the file, I would just open the file I wanted with A.vi, then copy the data from the array of channels, and paste it into the front panel of B.vi before pressing run.
    I cannot do this now. Is it because A is an EXE so the two are in different Application instances? I have not tried making B an EXE (nor do I want to), but I think it wouldn't matter because they would still be in different instances?

    You recreated numeric and string controls in an EXE. I agree that you can swipe these, CTRL C, and then CTRL V in to a VI. If I replace the CTRL C action with a Right Click> copy data, I get a picture in the VI.
    I can go to a numeric or text control or indicator within my EXE, right click, copy data, then paste that into another control within my EXE. If I then immediately go to a control in the VI, the Right Click>paste data option is greyed out and doing CTRL V drops a picture of the controlon the front panel. I did not select the control when I copied, I only highlighted the data inside the control.
    CTRL C or CTRL V is never an option when operating on array controls. I do not want to copy and paste individual lines of the array, I want the whole array data. This is done by right clicking on the numeric within the array index display and choosing copy data. In an EXE, this is your first option. In a VI while running, this is the third option. In a VI while not running, this is under data operations.
    I tried every combination of running and not running, and took screenshots, but it is hard to see exaclty what action I am performing.
    Attachments:
    Copy Array Data Running.jpg ‏37 KB
    Can't Paste Running.jpg ‏22 KB
    CTRL V of Right Click Copied Text.jpg ‏24 KB

Maybe you are looking for

  • Need to update the list item in the same sharepoint list with particular condition with Sharepoint Designer 2013.

    Hi All I have one sharepoint list with huge data i.e with 20columns and more than 200 records with the fields . Suppose lets consider there are A,B,C,D,E,F,G,H columns. Now i want to create one form with the fields A,C,E. When the user enter the exis

  • Looking for DPS designer and developper freelancer

    Hi everybody i've got a very interesting project to deliver I am looking for freelancers who have a very good experience working on DPS and Idesign, here is the brief, if you think you can help and want to make good money please shout: [email protect

  • How to embed youtube/vimeo videos in Flash MX

    Does anyone know how to embed a video in Flash that is from a video hosting site (i.e. youtube, vimeo)? I don't have the source video file, I was not the one who uploaded it. Thanks,

  • Problem in updation

    I have a jsp page named security.jsp. my problem is that the below code is not working. This page shown all the values of database, and there is a update button, after clicking that we can modify rows of the table. <html> <body> <table> <tr> <td> <%@

  • Which course is better?

    Hello,   Now I am working on JAVA.I want to learn SAP.Which module is better for me?I want to learn ABAP and EP.   are they better for me?