Copy and paste files from Windows Explorer

Hi everybody,
For a part of my application I need to copy and paste files and folders from Windows explorer to the vi shown in the picture.
Does anybody know how to implement this with the clipboard functionality.
Also drag and drop would be very nice (but thats maybe a later step...)
Best regards, Helmut

Hello Friedr,
drag and drop is the easy part!
Use a path control, this will naturally allow drag and drop. If a file is dropped on this a 'Value Change' event is fired! with this event you can load the data into the picture. To get a nice drag and drop functionality you should make the path transparent and resize to the size of the picture control. This will work fluently!
To use the clipboard, LV 8 has an functionality for this, I think it is an application event.
Success Ton
PS I didn't see you image maybe it was removed when you did a preview these have the bad habit of removing the attachments!
Free Code Capture Tool! Version 2.1.3 with comments, web-upload, back-save and snippets!
Nederlandse LabVIEW user groep www.lvug.nl
My LabVIEW Ideas
LabVIEW, programming like it should be!

Similar Messages

  • How do I copy and paste files from a windows remote server to my mac?

    How can i copy and paste files from a remote server (windows) to my mac? i have installed cord to connect to the server but now i can´t cpy the files to my mac!

    Hi Sara.  Tanks for responding.  If I cannot figure this out (I  was up
    until 2am last night), I want to cancel my subscription.
    Here are two files you can check on/help me with.  When I try again,  it
    comes up 'an error has occurred when trying to access the service.'
    Please advise.
    Pat Tomassi
    In a message dated 11/1/2014 12:55:23 A.M. Eastern Daylight Time, 
    [email protected] writes:
    How  do I copy and paste text from a converted Word document?
    created by Sara.Forsberg (https://forums.adobe.com/people/Sara.Forsberg) 
    in Adobe Acrobat.com Services - View the full  discussion
    (https://forums.adobe.com/message/6888908#6888908)

  • I'm not able to copy and paste files from my mac to hard disk and usb. I have tried dragging the items to those devices but it won't work. I also have tried copying and pasting those files onto those devices but that doesn't work too. Can any one help?

    I'm not able to copy and paste files from my mac to hard disk and usb. I have tried dragging the items I want to copy to those devices but it won't work. I also have tried copying and pasting those files onto those devices too but that doesn't work too. Can any one help?

    Hi BobRz
    Thanks for you suggestion but it didn't work - are there other ways for solving this problem? Or is it because my files that I want to copy and paste onto my hard disk etc are too big? (However there is space on my hard disk and it works on a PC)

  • Why is it no longer Possible to Copy and Paste files from Illustrator CC to Fireworks?

    Why is it no longer Possible to Copy and Paste files from Illustrator CC to Fireworks?

    What do "normal" AI prefs mean? AICB or PDF compliant? You might wanna try to turn off the latter....
    Mylenium

  • I able to copy and paste files from external hard drive to mac, but not the other way around. Please suggest. Thanks

    I m able to copy and paste selected files from external hard drive to my mac but not the other way around. Im not able to copy files from Mac to external hard drive.
    The same is working fine with USB flash memory.
    Please help.

    Vijay Raymond Daniel wrote:
    The only thing is we need to buy this software. if there is a free solution to inter change files between NTFS and HFS it would be better,
    Don't use NTFS, remove your data off it first and change the format to something the Mac and PC can read, but doens't cost money or require software.
    Drives, partitions, formatting w/Mac's + PC's

  • Cannot copy and paste files from laptop to ipad

    i cannot copy files from my windows laptop to ipad air. may someone tell me what to do
    i have also tried to sync my laptop with ipad but in vain
    jared

    1. Copy photos from computer to flash drive (wireless type)
    2. Transfer file from flash drive to iPad wirelessly
    http://www.sandisk.com/products/wireless/flash-drive/

  • Unable to open .xls and .xlsx files from windows explorer or from Microsoft outlook using MS Office 2007

    When I double click on an .xls or .xlsx file Excel will open up, but I never see the file open up.
    If I right click on the excel file and say open with excel I then get the following error:
    "Windows cannot find file c:\test\test.xls.  Make sure you typed the name correctly, and then try again...."
    Everywhere I looked seems to indicate the file associations was messed up so per a technical document I deleted the .xls and .xlsx association and then ran the Office 2007 repair and rebooted.  Still not working even after office puts the .xls and .xlsx
    file associations in.
    Here is what I see the in .xls and .xlsx for the &Open action:
    Application: "C:\Program Files\Microsoft Office\Office12\EXCEL.EXE" /e
    UseDDE: Checked
    DDE Message: [open("%1")]
    Any guidance would be appreciated!
    Greg

    In the ened I had to go into Excel Options, Advanced, General, and uncheck the "ignore other applicaitons....".  BUT this only worked after doing the Office 2007 repair.

  • Copy and past files from one place to another

    HI i am trying to back up few files from java program plz some one help me out. i am new to programming field.
    can i have a sample code so i can do my work easyli
    thanx yokivo.

    run this code and see:
    import javax.swing.*;
    import java.awt.event.*;
    import java.awt.*;
    import java.io.*;
    public class CopyPasteFiles extends JFileChooser {
    boolean directoryOnly = false;
    public CopyPasteFiles(String who) {
    if (who == "directoryOnly")
    directoryOnly = true;
    else
    directoryOnly = false;
    try {
    jbInit();
    catch(Exception e) {
    e.printStackTrace();
    private void jbInit() throws Exception {
    this.setBounds(new Rectangle(8, 8, 583, 482));
    this.setDialogTitle("Select a file");
    if (directoryOnly == false) {
    this.setFileSelectionMode(JFileChooser.FILES_ONLY);
    this.setApproveButtonText("Backup it!");
    else {
    this.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
    this.setApproveButtonText("Select it!");
    public boolean implementBackup(File origin, File destination) {
    boolean backup = false;
    if (origin != null && destination != null) {
    String path = origin.getPath();
    try {
    FileInputStream origin1 = new FileInputStream(origin);
    File back1 = new File(destination.getPath() + File.separator + path.substring(path.lastIndexOf(File.separator)+1));
    back1.createNewFile();
    FileOutputStream back2 = new FileOutputStream(back1);
    byte[] bytes = new byte[origin1.available()];
    origin1.read(bytes);
    back2.write(bytes);
    origin1.close();
    back2.close();
    back1 = null;
    catch (Exception err) {
    System.out.println("File Error: " + err.getMessage());
    backup = true;
    return backup;
    public static void main(String[] args) {
    try {
    UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
    catch(Exception err) {
    System.out.println("General Error: " + err.getMessage());
    err.printStackTrace();
    CopyPasteFiles copyPasteFiles1 = new CopyPasteFiles("fileOnly");
    int returnValue1 = copyPasteFiles1.showOpenDialog(copyPasteFiles1);
    File directorySelected = null;
    File fileSelected = null;
    if (returnValue1 == JFileChooser.APPROVE_OPTION) {
    fileSelected = copyPasteFiles1.getSelectedFile();
    boolean isDirectory = false;
    while (isDirectory == false) {
    CopyPasteFiles copyPasteFiles2 = new CopyPasteFiles("directoryOnly");
    int returnValue2 = copyPasteFiles2.showOpenDialog(copyPasteFiles2);
    if (returnValue2 == JFileChooser.APPROVE_OPTION) {
    directorySelected = copyPasteFiles2.getSelectedFile();
    if (directorySelected.isDirectory())
    isDirectory = true;
    else
    isDirectory = true;
    boolean isBackup = copyPasteFiles1.implementBackup(fileSelected, directorySelected);
    int messagebox = 0;
    if (isBackup == true)
    messagebox = JOptionPane.showConfirmDialog(null, "Backup: YES.", "Caution!", JOptionPane.OK_CANCEL_OPTION, JOptionPane.WARNING_MESSAGE);
    else
    messagebox = JOptionPane.showConfirmDialog(null, "Backup: NO.", "Caution!", JOptionPane.OK_CANCEL_OPTION, JOptionPane.WARNING_MESSAGE);
    System.exit(0);

  • How Do I Drag and Drop Images From Windows Explorer to Applet?

    I'm not able to Drag and Drop Images and other files (like audio and video files) from Windows Explorer to Applet. Is that Possible to do so?. Can SomeOne help me out regarding this? Thanx in Advance.

    No problem here. Can you say any more about the situation?
    Jerry

  • Very slow opening PDF files from Windows Explorer

    When I open a file from within Acrobat X Standard - whether through File>Open or the recent files list - the file opens very quickly.  When I open a PDF file from Windows Explorer, it takes 10 seconds or longer for the file to open.  Is this an Acrobat issue or a Windows/system problem?  (I don't experience the same delay when opening Word and Excel files from Windows Explorer.)

    I had to install adobe reader, but   PDF's used to display just fine with IE, any idea what happened ?
    Windows 8.1 pro.
    thx
    lee

  • Muse 2014.2 : when I copy and paste svg from Illustrator to Muse, i have no transparency.

    Hello. Muse 2014.2 : when I copy and paste svg from Illustrator to Muse, i have no transparency. Only by importing saved svg file I have transparency.
    In official Adobe (promo) Tutorial  in the same operation - svg is transparent, link: Import SVG | Adobe Muse CC tutorials
    Please help me!. It would be very usefull copy&paste svg with transparency.
    Andrew Maola

    Hi.
    Thank you for explaining the theory about rendering in Muse but something doesn't work.
    I'm running on Win7 - CC2014.2. on 2 different computers. Efe Of course the transparency displays correctly when I preview my page in the browsers (All browsers - also IE11).
    Also in preview mode svg is very good but in design mode
    In order to render the SVG at design time, Muse hands the SVG to Safari on the Mac and Internet Explorer on Windows and asks it for a bitmap. This bitmap is only used at design time and when viewing the site in a browser that does not support SVG. Unfortunately, the bitmap returned by Internet Explorer strips out partial transparency. Fully transparent pixels should be preserved at design time and all transparency should be preserved when you actually view your site in the browser.
    We have not seen or heard of differences in the handling of transparent pixels between copy/pasting and save/import. Hence, I'm wondering if the copy/paste issue is only with partially transparent pixels and if the case that succeeds in a save/import workflow is for fully transparent pixels. To be clear, this transparency issue should only be during design time on Windows. There shouldn't be any issues on the Mac or in the browser.
    Muse 2014.2 : when I copy and paste svg from Illustrator to Muse, i have no transparency. 

  • 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

  • Copy and paste image from IE to Illustrator

    Dear Illustrator users,
    I need to copy and paste images from IE10 or IE11 (Internet Explorer) to Illustrator (CS6, CC).
    I right-click image, choose "copy" in Internet Explorer
    now I can paste it to mspaint, word, photoshop, etc. It works fine..
    but when I try to paste image to Illustrator, it pastes url link instead of image.
    I know this problem comes with IE10. When I downgrade to IE9, it start to work fine.
    Any suggestion?
    Kind Regards,
    Jarda

    Hi Jacob,
    Thank you for a quick answer. Your suggestion is correct, but saving image to a file is an additional step.
    Since I do this task "thousands a day", this is unacceptable
    Any other suggestion?
    Regards,
    Jarda

  • I can't copy and paste files in finder arrrgghh

    Ok im not the most tech savvy person around and this is my first imac, I dont operate windows on it and am stumped. I am trying to transfer my movies onto a media player and external hard drive but it just wont do it. when I just had my previous pc all I had to do was copy and paste and am ready to scream. Does anyone have any answers????

    I don't think this is necessarily a disk format problem.  I've been noticing the same thing the past few weeks.  I used to copy and paste files frequently using the Finder but it no longer works.  I have the Copy option in the contextual menu when a file is selected but I no longer have a Paste option after doing the copy.
    All mounted drives on my system are formatted Mac OS Extended and the operation fails even when attempting to copy files residing on the boot drive to another folder on the same boot drive.  Digging around for a cause/solution now.
    UPDATE:
    The problem in my case was an application called Clipboard Cleaner that strips all formatting from text you copy to the clipboard so you can copy from something like a Word doc and paste into an email without all the Word formatting coming along as well.  It runs in the background and apparently disables the ability to copy/paste files.
    Message was edited by: jdubfromtx

  • Can't copy and paste files

    Why won't my MacBook Pro let me copy and paste files, particularly from my external hard drives (to each other) and (to my computer). They are both new and it shouldn't be a problem.
    Please help!

    Is it possible that the hard drives, which you said are new, have not been formatted for the mac?  If they are formatted NTFS (which is the standard format for new drives) you will only be able to read from the drives, not write...therefore you will not be able to cut and paste. 
    To check the format of the drive, from the Utilities folder, open the application "Disk Utility".  Select the Hard drive from the left side of that app, and then click on the "Partition" tab.  Then click on the big Partition block found under "Volume Scheme" and see what it says beside "Format".  If it is NTFS, this is your problem.
    The best solution if the drives will only be used on the mac is to use the Disk Utility Application and reformat the hard drives by selecting the drive you want to format on the left side of the app, and select the "Partition" tab.  Under Volume Scheme select "1 partition" and then for format, select "Mac OS Extended (Journaled)".  Then Click Apply.  PLEASE NOTE THAT DOING THIS WILL ERASE EVERYTHING ON THAT HARD DRIVE!!!!
    If the drives need to be used on a windows machine as well, you can download and install this plugin for your mac that will make it read and write to NTFS although it will do so slower than a disk formatted for the mac.  Here is a link: http://www.macupdate.com/app/mac/24481/ntfs-3g    Using this option will NOT require you to loose any data that might already be on the disks.
    Hope this helps!

Maybe you are looking for

  • Sharepoint 2013 and SSRS 2012 Integration - Report Server Content Types not displayed

    Hello, Everyone:   I installed SSRS 2012 on our Sharepoint 2013 application server following the step-by-step instruction from the posting below:   http://msdn.microsoft.com/en-us/library/jj219068.aspx   Everything goes well after STEP 3 is completed

  • Macpro in a windows world

    Hi - I have been a dedicated mac user for the last 4 years. I am now joining a small organization (totally Windows). I have the option to go with a new Macpro and run windows 7 inside parallels. Is this really wise? What difficulties will I see? I ha

  • Distribution rules issue

    Hi, Could anybody explain what is distribution rule and where it comes into picture. Your help is highly appreciated. rgds srikanth rvs

  • Kapsel Plugins with SUP 2.2 ?

    Hi everybody, did anyone of you try out whether the Kapsel Plugins of SMP SDK 3.0 will be able to communicate with the old SUP 2.2? I mean, it might work, if there have been little or no changes to the REST API... Background: I have a customer who is

  • Battery on Iphone 5

    Explain to me why I should have to pay for a replacement battery on a phone that is only 15 months old?  Is it not reasonable to expect that the battery would last at least until I am eligible to upgrade my phone?  Needless to say NOT a happy Apple c