Search results for query: *

  1. N

    Question Drag Drop Files works in Visual Studio but fails in deployed version

    Permissions It bypassed the copy catcher. I got rid of the try's and it comes up with access to desktop is denied. It looks like it's a permission issue that I'm not sure how to get around?
  2. N

    Question Drag Drop Files works in Visual Studio but fails in deployed version

    Narrower Looking into it further - it seems like it's the File.Copy that fails: For Each exportedFile As String In strFilesPath MessageBox.Show(exportedFile + " " + ChosenFolder + "\" + Path.GetFileName(exportedFile)) Try...
  3. N

    Question Drag Drop Files works in Visual Studio but fails in deployed version

    Apologies, I'm new to this. The code below is used to be able to drag files in and out of a listbox. It works fine in the VS13Express environment. All drag drop functionality is lost after the first closing of the stand-alone deployed application. Private MouseDownPos As Point Private...
  4. N

    Question Drag Drop Files works in Visual Studio but fails in deployed version

    I have a windows application that can drag and drop files from File Explorer/Desktop into a listbox. It works fine in the Visual Studio Express 2013 environment in both debug and release builds. I have created an exe using Inno5 and when deployed as a stand-alone version - the drag and drop...
Back
Top