active questions tagged openfiledialog - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T09:51:08Z http://stackoverflow.com/feeds/tag/openfiledialog http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/428410/select-either-a-file-or-folder-from-the-same-dialog-in-net 7 Select either a file or folder from the same dialog in .NET barry 2009-01-09T15:08:28Z 2009-11-30T14:40:33Z <p>Is there an "easy" way to select either a file OR a folder from the same dialog?</p> <p>In many apps I create I allow for both files or folders as input. Until now i always end up creating a switch to toggle between file or folder selection dialogs or stick with drag-and-drop functionality only. </p> <p>Since this seems such a basic thing i would imagine this has been created before, but googling does not result in much information. So it looks like i would need to start from scratch and create a custom selection Dialog, but I rather not introduce any problems by reinventing the wheel for such a trivial task.</p> <p>Anybody any tips or existing solutions?</p> <p>To keep the UI consistent it would be nice if it is possible to extend the OpenFileDialog (or the FolderBrowserDialog).</p> http://stackoverflow.com/questions/1640419/open-file-dialog-box 0 Open File Dialog Box Nathan Campos 2009-10-28T22:02:27Z 2009-11-30T01:46:26Z <p>Hello,</p> <p>I'm learning Objective-C and trying to develop a simple zipper application, but I stopped when now, when I need to insert a button at my dialog and this button opens a Open File Dialog that will select a file to compress, but I never used a Open File Dialog, then how I can open it and store the user selected file in a <code>char*</code>? Thanks.</p> <p>Remember that I'm using GNUstep(Linux).</p> http://stackoverflow.com/questions/1391579/simple-silverlight-open-file-dialog-errors 0 Simple silverlight open-file-dialog errors Luke Baulch 2009-09-08T01:46:23Z 2009-11-24T23:45:39Z <p>A while back I wrote a silverlight user control which had a csv import/export feature. This has been working fine, until recently I discovered it erroring in one scenario. This may have been due to moving to Silverlight 3. </p> <p><strong>The Error:</strong><br> Message: Unhandled Error in Silverlight 2 Application<br> Code: 4004<br> Category: ManagedRuntimeError<br> Message: System.Security.SecurityException: Dialogs must be user-initiated.<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;at System.Windows.Controls.OpenFileDialog.ShowDialog()<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;at MyControl.OpenImportFileDialog()<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;at ...</p> <p><strong>The Code:</strong></p> <pre><code>private void BrowseFileButton_Click(object sender, RoutedEventArgs e) { if (string.IsNullOrEmpty(lblFileName.Text)) { if (MessageBox.Show("Are you sure you want to change the Import file?", "Import", MessageBoxButton.OKCancel) == MessageBoxResult.Cancel) { return; } } EnableDisableImportButtons(false); var fileName = OpenImportFileDialog(); lblFileName.Text = fileName ?? string.Empty; EnableDisableImportButtons(true); } private string OpenImportFileDialog() { var dlg = new OpenFileDialog { Filter = "CSV Files (*.csv)|*.csv" }; if (dlg.ShowDialog() ?? false) { using (var reader = dlg.File.OpenText()) { string fileName; //process the file here and store fileName in variable return fileName; } } } </code></pre> <p>I can open an import file, but if i want to change the import file, and re-open the file dialog, it errors. Does anyone know why this is the case?<br> Also, I am having trouble debugging because placing a breakpoint on the same line (or prior) to the dlg.ShowDialog() call seems to cause this error to appear as well. Any help would be appreciated?</p> http://stackoverflow.com/questions/1790607/open-file-dialog-not-working-in-vista-and-2008-envir 0 open file dialog not working in vista and 2008 envir subash 2009-11-24T14:56:39Z 2009-11-24T15:11:21Z <p>i am using Vista . I designed MSi file through Visual Studio 2008 Setup and deployment project in which I added one custom action. In the custom action, I am opening OpenFile dialog. This Open File dialog is not showing mapped drive or network locations. so how can i make the open file dialog to mapthe network drives.</p> http://stackoverflow.com/questions/1769792/changing-button-text-in-openfiledialog-in-c-net 0 changing button text in OpenFileDialog in C#.net Bart Socha 2009-11-20T11:09:07Z 2009-11-20T14:29:10Z <p>Does anyone knows how to change text on button in OpenFileDialog in Windows.Forms in C#.NET?</p> http://stackoverflow.com/questions/1757093/obtain-the-true-name-of-the-currently-select-file-in-the-common-file-dialog 2 Obtain the true name of the currently select file in the common file dialog? Mordachai 2009-11-18T16:09:15Z 2009-11-18T22:41:16Z <p>One can get the text of the selected item in the list-view of a common dialog. But one can NOT get its PIDL, and if the user has chosen to hide known extensions (the default), then one cannot really tell what file was selected without either its extension or its PIDL. </p> <p>So possible ways to solve this might be:</p> <ol> <li>Obtain an IShellView from the standard open file dialog. The underlying IShellView can tell what the PIDL is for the current selection. So if I could simply get ahold of the IShellView, I'd be golden. Unfortunately, I see no CDM_xxx that would do it. And I can't think off the top of my head of anything that might achieve it!!! :( </li> <li>Some other idea?!</li> </ol> <p>We used to rely upon the fact that the Windows 9x, 2000, and XP version of the common file dialog stored each item's PIDL in the LVITEM data (original credit to Paul DiLascia):</p> <p>LPCITEMIDLIST pidlItem = (LPCITEMIDLIST)pListCtrl->GetItemData(nItem);</p> <p>However, starting with Vista's common controls and above, that technique fails :(</p> <p>Any thoughts?</p> <p>EDIT: I need to be able to obtain this information not only for the currently selected item in the list view, but for all items in the list view.</p> <p>EDIT2: The reason I need to dig so deep: </p> <p>In prior versions of our app we provide the ability to: (1) Press a custom button "Preview" that closes the dialog, but transfers to the app the list of items currently displayed in the view, in their visible order, along with the index of the one currently highlighted. This list must be fully specified - seeing 3 files that are all "J1329192" (when there are really 3 files "J1329192.xyz" "J1329192.xzy" and "J1329192.zyx" [in that order) is not useful.</p> <p>Users are allowed to type a partial filename filter into the "file name:" field, and the common dialog will show only files that match the given partial filter, in the sort-order that the user has chosen. So to report back to the app exactly what the user wanted to preview requires that we be able to query that information from the list view control (or the common dialog itself).</p> <p>We do other enhancements to the file dialog as well - including an in-place preview pane that shows the user's current selection as a thumbnail, as well as have a custom recent-places interface, etc. All of this was possible (with a lot of work) prior to Vista. Post Vista, I have run into wall upon wall. For the time being, we use a standard file dialog with only a very few features of our own, which doesn't sit well with customers (what happened to feature X?!)</p> <p>There are other enhancements, but that's a good rough overview. And they all boil down to requiring the knowledge of "really, honestly, what file specifically is in the view at index X?" And for unknown reasons - Microsoft doesn't seem to feel the need to provide such an interface. In fact they never did. Only through some hacking and reverse engineering were we able to figure out how things worked under the hood and get the needed info. And yes, that's unsupported, and yes, MS inevitably broke our code. I don't really blame them for that - what I do find obnoxious is that their newer, spiffier interface is far more closed than their older one - and they did not provide more up-front interfaces - supported interfaces - for doing these dialog enhancements. Its like they took a big couple of steps backwards - and none forwards (in the name of progress).</p> http://stackoverflow.com/questions/1734176/weird-acting-loop-in-c 1 Weird acting loop in C# fernando 2009-11-14T13:02:06Z 2009-11-14T13:33:32Z <p><strong>Note: I added actual code snippets. Just scroll to end.</strong></p> <pre><code>// files is created by a OpenFileDialog. public void Function(String[] files, ...) { for(int i; i&lt;files.Length; i++) { WriteLine("File " + i + "/" + files.Length + " being processed."); //... processing for a long time and printing information to console ... } //... print results, e.g.: "Results: bla bla"... } </code></pre> <p>Function is called in another loop. I ran the code a few times and thought it was working well until I saw that one time it acted weird. I provided the above function with an array length of which was 6, and the expected output was like this:</p> <pre><code>------------------------- File 0/6 being processed. ...lots of output... File 1/6 being processed. ...lots of output... File 2/6 being processed. ...lots of output... File 3/6 being processed. ...lots of output... File 4/6 being processed. ...lots of output... File 5/6 being processed. ...lots of output... Results: bla bla... ------------------------- </code></pre> <p>However, the output I got was like that:</p> <pre><code>------------------------- File 0/1 being processed. ...lots of output... Results: bla bla... File 0/3 being processed. ...lots of output... File 1/3 being processed. ...lots of output... File 2/3 being processed. ...lots of output... Results: bla bla... File 0/3 being processed. ...lots of output... File 1/3 being processed. ...lots of output... File 2/3 being processed. ...lots of output... Results: bla bla... File 0/6 being processed. ...lots of output... File 1/6 being processed. ...lots of output... File 2/6 being processed. ...lots of output... File 3/6 being processed. ...lots of output... ------------------------- </code></pre> <p>When I saw that output I quit the execution before the current loop was over (it runs for a very long time.)</p> <p>It looks like the function is working correctly (It runs files.Length times and outputs results after that.) However, the argument passed to the function is somehow faulty (The function is interestingly called more than once. Normally, it should run for only one time in this case. I mean, the number of lines in a script file determine the number of times above function is called, and the script file contains only one line.) That argument (files array) comes from a OpenFileDialog, which means I have nothing to do with it. I just pass the array to the function.</p> <p>I'm still trying to understand the reason for such a strange outcome. This only happened one time, but I still have to diagnose the problem; because, I will leave the program running maybe for a couple of days. It should work correctly.</p> <p>Do you have any ideas about this nonsense?</p> <p><hr></p> <p>Actual code of above function:</p> <pre><code>public String Start(String[] files, StreamWriter reportWriter) { List&lt;SortedDictionary&lt;int, SortedDictionary&lt;long, int&gt;&gt;&gt;[] allResults = new List&lt;SortedDictionary&lt;int,SortedDictionary&lt;long,int&gt;&gt;&gt;[files.Length]; List&lt;SortedDictionary&lt;int, SortedDictionary&lt;long, int&gt;&gt;&gt; results; Simulation_DenemePositionEstimator p; Simulation_WimaxStreamReader reader; String ret; for (int i = 0; i &lt; files.Length; i++) { System.Console.WriteLine("File " + (i+1) + "/" + files.Length + " being processed."); reader = new Simulation_WimaxStreamReader(grids, new StreamReader(files[i])); p = new Simulation_DenemePositionEstimator(grids, reader); // Using parameters in script file which were saved into // different variables when Simulation instance was created. results = p.StartInvestigation(maxRssiDiff, maxCinrDiff, maxAvgTxPwrDiff, maxUncontinuity, radiusForNeighbors, expansionFactor, increment, n, numberOfIterations, resetCountForPositioning); allResults[i] = results; reader.Close(); } ret = Statistics(allResults); System.Console.WriteLine(ret); reportWriter.WriteLine(ret); reportWriter.Flush(); return ret; } </code></pre> <p>Caller function code:</p> <pre><code> // read a line from script file. while((line = reader.ReadLine()) != null) { // line starting with # is comment. if (line.StartsWith("#") == false) { // save parameters retrieved from script file into an array. values = line.Split(delimiters); // new Simulation instance with new parameters sim = new Simulation(map, values); // Start simulation. scenarioFiles comes from OpenFileDialog. report = sim.Start(scenarioFiles, reportWriter); //reportWriter.WriteLine(report); reportWriter.WriteLine("---------------NEW-PARAMETERS---------------"); reportWriter.Flush(); } } </code></pre> <p>Script file:</p> <pre><code># Horizontal grid count # Vertical grid count # maxRssiDiff is the maximum RSSI difference allowed. # maxCinrDiff is the maximum CINR difference allowed. # maxAvgTxPwrDiff is the maximum AvgTxPwr difference allowed. # maxUncontinuity # radiusForNeighbors # expansionFactor # increment # n -&gt; MT'den gelen kaç değerin ortalaması alınıp yer bulma algoritmasına girdi olarak verilsin? # Algoritma kaç adımda bir sonuçları dosyaya yazsın? # Kaç adımdan sonra yer bulma işlemine sıfırdan başlamış gibi devam etsin? # # Örnek: # 118 90 4 3 4 2 1 1 1 3 10 100 118 90 6 4 6 2 1 1 1 3 250 500 # 200 140 4 3 4 2 1 1 1 3 10 100 </code></pre> http://stackoverflow.com/questions/1731001/silverlight-openfiledialog-doevents-equivalent 0 Silverlight OpenFileDialog DoEvents equivalent David in Dakota 2009-11-13T18:24:58Z 2009-11-13T18:46:14Z <p>I'm processing large files after they are selected by the user. My code looks like the following: </p> <pre><code>if (FileDialog.ShowDialog() == true) { // process really big file } </code></pre> <p>This freezes up the UI so I tried to display a loading message first before a user selected the file to give them a visual cue that something was happening: </p> <pre><code>loadingMessage.Visibility = Visibility.Visible; if (FileDialog.ShowDialog() == true) { // process really big file } </code></pre> <p>Unfortunately, this still completely freezes up the UI while the file is being processed. </p> <p>What I have found that works perfectly is if I fire a MessageBox right after the file selection. I think it does a "DoEvents" type call under the hood to get flush event/ui items in the runtime. </p> <pre><code>loadingMessage.Visibility = Visibility.Visible; if (FileDialog.ShowDialog() == true) { MessageBox.Show("Sync!"); // process really big file } </code></pre> <p>In cases like this the big file is still processed as slowly but the loading message is displayed and the screen UI gets synched up (I'm doing some other things in the real thing such as showing a wait cursor). </p> <p><strong>Question:</strong> </p> <p>Silverlight has no DoEvents functionality. Is there a call I can make besides MessageBox.Show to have the same effect of synchronizing the UI and preventing the OpenFileDialog from freezing up the UI?</p> http://stackoverflow.com/questions/315692/open-dialog-preserving-settings 3 Open Dialog preserving settings Mike 2008-11-24T22:10:20Z 2009-11-10T21:45:22Z <p>How does one preserve the settings in the Open Dialog box? For example, I would the Open Dialog to remember that I chose the Details view and sorted by date modified.</p> http://stackoverflow.com/questions/1635846/c-openfiledialog-lock-to-directory 2 C# OpenFileDialog Lock To Directory QAH 2009-10-28T08:29:25Z 2009-10-28T10:10:21Z <p>Hello everyone! I am making a software that needs to ONLY be able allow people to select files and folders using the OpenFileDialog that are in the same directory as the program and that are in deeper folders. I don't want the OpenFileDialog to be able to select stuff outside of the program's current directory. Is this possible to do in C# using the OpenFileDialog?</p> <p>Please let me know</p> <p>Thanks</p> http://stackoverflow.com/questions/1619505/wpf-openfiledialog-with-the-mvvm-pattern 2 WPF OpenFileDialog with the MVVM pattern? Judah Himango 2009-10-24T23:36:35Z 2009-10-26T08:39:24Z <p>I just started learning the MVVM pattern for WPF. I hit a wall: <strong>what do you do when you need to show an OpenFileDialog</strong>?</p> <p>Here's an example UI I'm trying to use it on:</p> <p><img src="http://www.freeimagehosting.net/uploads/0910bd9d61.png" alt="alt text" /></p> <p>When the browse button is clicked, an OpenFileDialog should be shown. When the user selects a file from the OpenFileDialog, the file path should be displayed in the textbox.</p> <p>How can I do this with MVVM?</p> <p><strong>Update</strong>: How can I do this with MVVM and make it unit test-able? The solution below doesn't work for unit testing.</p> http://stackoverflow.com/questions/1570217/mfc-open-folder-dialog 0 MFC Open Folder Dialog Smashery 2009-10-15T03:59:10Z 2009-10-15T15:20:47Z <p>In MFC, is there an Open Folder Dialog? That is, rather than choosing a filename, it chooses a folder name? Ideally, I'd like it to be the way Visual Studio does it when navigating for a "Project Location" (when creating a new project), which looks very much like a normal file dialog. But I could make do with one of the <a href="http://www.experts-exchange.com/images/150159/folder.PNG" rel="nofollow">vertical tree</a> sort of interfaces if the former doesn't exist.</p> http://stackoverflow.com/questions/930816/why-does-openfiledialog-change-my-working-directory 2 Why does OpenFileDialog change my working directory? acidzombie24 2009-05-30T22:56:35Z 2009-10-09T17:08:22Z <p>Why does OpenFileDialog change my working directory? Should i assume many func in System.Windows.Forms will change my working directory?</p> <pre><code> OpenFileDialog open = new OpenFileDialog(); open.Filter = filter; a = Directory.GetCurrentDirectory(); //&lt;-- correct if (open.ShowDialog() == DialogResult.OK) //-- select a file on my desktop { a = Directory.GetCurrentDirectory(); //&lt;-- incorrect, is set to my desktop </code></pre> http://stackoverflow.com/questions/1505257/open-a-web-folder-sharepoint-2007through-openfiledialog 0 Open a web folder (Sharepoint 2007)through openFileDialog Jasoomian 2009-10-01T17:14:37Z 2009-10-02T13:45:08Z <p>I have the following snippet of code written in C#:</p> <pre><code>openFileDialog1.InitialDirectory = "\\\\fwm-storage\\users\\" + curUser + "\\My Documents\\My Pictures"; openFileDialog1.Filter = "All Files (*.*)|*.*|Images (*.jpg)|*.jpg"; openFileDialog1.FilterIndex = 2; // blah, blah, blah </code></pre> <p>Which works great and all, but, I want to be able to add/change the ability to have the <b>openFileDialog.InitialDirectory</b> be a web folder on our SharePoint server. Say, for example: "http:\intranet\company\division\photos"</p> <p>Anyone have any ideas as to how I can do this. I have exhausted my morning looking for an answer and my GoogleFu is apparently not up to par. I have seen sparse recommendations, but, it looks like it might require WPF (Windows Presentation Foundation) or installing a Sharepoint SDK for Visual Studio (which might(?) allow me to directly access the SharePoint dBase). I am not above installing the SDK if that will get me to where I need to go; but not so much on the WPF.</p> <p>Any help is greatly appreciated. Even if just to say it can't be done. If you need more information, always happy to oblige.</p> <p>Thanks.</p> <p>Jasooomian</p> http://stackoverflow.com/questions/1378902/is-it-never-possible-to-get-the-fullname-from-a-file-using-silverlight-openfiledi 0 Is it never possible to get the FullName from a file using Silverlight OpenFileDialog? PlayKid 2009-09-04T12:22:51Z 2009-09-04T13:06:11Z <p>Hi there,</p> <p>I want to get the fullname from a file on Silverlight OpenFileDialog, when I try that, Silverlight throws me an error.</p> <p>I saw there is an attribute on FullName saying it is [SECURITY CRITICAL], but I need to display the full path, is it really no way I can do that?</p> <p>Please help.</p> <p>Thanks</p> http://stackoverflow.com/questions/1338659/does-openfiledialog-filenames-have-a-limit 0 Does OpenFileDialog.Filenames have a limit? Crash893 2009-08-27T03:08:17Z 2009-08-27T04:30:56Z <p>I have a small helper app that I use to "inject" scripts into html pages.</p> <p>I have an openfiledialog promt and i select all the html files in that directory (1403 files) and no matter what i do i see that OFD.filenames.count = 776</p> <p>is there a limit?</p> <p>thanks</p> <pre><code>OpenFileDialog OFD = new OpenFileDialog(); OFD.Multiselect = true; OFD.Filter = "HTML Files (*.htm*)|*.HTM*|" + "All files (*.*)|*.*"; if (OFD.ShowDialog() == DialogResult.OK) { progressBar1.Maximum = OFD.FileNames.Count(); foreach (string s in OFD.FileNames) { Console.WriteLine(s); AddAnalytics(s); progressBar1.Value++; } MessageBox.Show(string.Format("Done! \r\n {0} files completed",progressBar1.Value)); progressBar1.Value = 0; } </code></pre> http://stackoverflow.com/questions/1321728/getting-filesize-from-openfiledialog 3 Getting filesize from OpenFileDialog? Mary 2009-08-24T11:02:46Z 2009-08-25T08:23:37Z <p>How can I get the filesize of the currently-selected file in my Openfiledialog?</p> http://stackoverflow.com/questions/1311578/opening-multiple-files-openfiledialog-c 1 Opening multiple files (OpenFileDialog, C#) baeltazor 2009-08-21T12:09:56Z 2009-08-21T12:13:16Z <p>Hi all,</p> <p>i'm trying to open multiple files at once with the OpenFileDialog, using FileNames instead of FileName. But I cannot see any examples anywhere on how to accomplish this, not even on MSDN. As far as I can tell - there's no documentation on it either. Has anybody done this before??</p> http://stackoverflow.com/questions/921937/excluding-file-extensions-from-open-file-dialog-in-c 0 Excluding file extensions from open file dialog in C#. ZGray 2009-05-28T16:43:50Z 2009-08-18T10:59:13Z <p>I am trying to put a filter on my C# openFileDialog that excludes certain file extensions. For example I want it to show all files in a directory that are not .txt files.</p> <p>Is there a way to do this?</p> http://stackoverflow.com/questions/1282414/saving-the-filepath-of-a-txt-file 0 Saving the filepath of a .txt file Papuccino1 2009-08-15T17:34:50Z 2009-08-15T17:50:41Z <p>I need my application to ask the user to browse to a particular file, save that files location and subsequently write a string from a TextBox to it.</p> <p>However, I only need my end-user to browse to the file the <strong>first time</strong> the application launches. Only once.</p> <p>Here lies my dilemma, how can I have my application <em>remember</em> if it was the first time it launched?</p> http://stackoverflow.com/questions/1261910/when-does-microsoft-win32-openfiledialog-showdialog-return-null 2 When does Microsoft.Win32.OpenFileDialog.ShowDialog() return null? emddudley 2009-08-11T17:43:05Z 2009-08-12T08:17:59Z <p><a href="http://msdn.microsoft.com/en-us/library/microsoft.win32.openfiledialog.aspx" rel="nofollow">OpenFileDialog</a>'s <a href="http://msdn.microsoft.com/en-us/library/microsoft.win32.openfiledialog.showdialog.aspx" rel="nofollow">ShowDialog</a> method returns a nullable boolean, set to true if the user clicked OK or false if he clicked Cancel. When does it return <code>null</code>? The documentation does not say.</p> http://stackoverflow.com/questions/1256130/setting-the-start-position-for-openfiledialog-savefiledialog 5 Setting the start position for OpenFileDialog/SaveFileDialog msorens 2009-08-10T17:25:10Z 2009-08-10T18:52:44Z <p>For any custom dialog (form) in a WinForm application I can set its size and position before I display it with:</p> <pre><code>form.StartPosition = FormStartPosition.Manual; form.DesktopBounds = MyWindowPosition; </code></pre> <p>This is particularly important when dealing with multiple monitors. Without such code, when you open a dialog from an application that you have dragged to a second monitor, the dialog appears on the primary monitor. This presents a poor user experience.</p> <p>I am wondering if there are any hooks to set the position for the standard .NET OpenFileDialog and SaveFileDialog (which do not have a StartPosition property).</p> http://stackoverflow.com/questions/1028219/getopenfilename-lpstrinitialdir-directory-not-working-for-url-sharepoint 1 GetOpenFileName lpstrInitialDir (directory)... not working for URL (SharePoint) Steve 2009-06-22T16:35:20Z 2009-08-05T09:00:02Z <p>I bring up a GetOpenFileName dialog, enter a URL to a SharePoint sever, and it lets me browse that server using the Web Client Service (WebDAV mini-redirector). I am trying to get the initial directory to come up as that URL, but it seems to ignore it (using OPENFILENAME struct's lpstrInitialDir. Local paths work fine. </p> <p>EDIT: Paul requested the form of the URL: it's <a href="http://doc.name.com" rel="nofollow">http://doc.name.com</a> I've also tried a trailing slash (both flavors) to see if that made a difference (saw some reference to that in another posted question). It didn't seem to.</p> <p>EDIT2: This does work if I use the WebDAV address instead of the HTTP URL (i.e., \doc.name.com\DavWWWRoot. This doesn't solve my problem, as it's not a view of the site that users will recognize and will have difficulty working with.</p> http://stackoverflow.com/questions/478476/c-openfiledialog-non-modal-possible 1 C# OpenFileDialog Non-Modal possible maxfridbe 2009-01-25T23:02:10Z 2009-07-23T21:39:59Z <p>Is it possible to create/have a non-modal .net OpenFileDialog I have a UI element in the main dialog which always need to be available for the user to press.</p> http://stackoverflow.com/questions/1132163/openfiledialog-does-not-browse-the-folders-under-net-cf 1 OpenFileDialog does not browse the folders under .NET CF unknown (yahoo) 2009-07-15T15:32:32Z 2009-07-15T18:10:37Z <p>I have an WinMo app and I would like to open a file from the storage card. The file is NOT in the root but within the folder structure. I thought OpenFileDialog would do the trick just as it does under regular .NET. But it does not offer me to navigate over the folders. I looks really lame. Or am I just outstandingly stupid?</p> http://stackoverflow.com/questions/1076827/file-open-dialog-with-encodings-combobox-under-vista 1 File Open Dialog with Encodings combobox under Vista. MarkF 2009-07-02T21:48:39Z 2009-07-03T07:23:42Z <p>I currently use the TOpenTextFileDialog as it has the Encodings option, but under Vista it appears using the older open dialog style. I'd like the new style open dialog, but with an encoding combobox that I can fill with custom strings. Basically I want the exact open dialog that Notepad shows under Vista. Of course I also need the corresponding save dialog as well. </p> <p>I've done some research and it seems that the OFN_ENABLETEMPLATE flag causes the Vista common dialog to fall back to the old style. Unfortunately that's also the flag that lets the TOpenTextFileDialog modify the window to add the encodings combobox (if I understand things properly.) </p> <p>Does anyone have a suggestion on how to get what I want under Vista but still have it work under XP? I assume that Windows 7 will have the same issue. I'm using D2009. Thanks for any suggestions or help!</p> http://stackoverflow.com/questions/1065000/invalid-pointer-operation 1 Invalid Pointer Operation Attilah 2009-06-30T17:39:51Z 2009-06-30T18:36:58Z <p>I have a form that contains a <code>TOpenDialog</code> component (<code>OpenDialog1</code>) and a button. <code>OpenDialog1</code> has the <code>ofAllowMultiSelect</code> (of <code>Options</code>) property set to true.</p> <p>Upon clicking the button the method <code>AddFilesToListView</code> is executed:</p> <pre><code>procedure TForm4.AddFilesToListView(); var ListItem : TListItem; I: Integer; F : File; LengthOfAudio : TDateTime; previousCursor : TCursor; begin previousCursor := Self.Cursor; Self.Cursor := crHourGlass; if OpenDialog1.Execute then begin for I := 0 to OpenDialog1.Files.Count - 1 do begin if FileExists(OpenDialog1.FileName) then begin ListItem:=ListView1.Items.Add; ListItem.Caption := 'Test'; ListItem.SubItems.Add(ExtractFileName(OpenDialog1.Files[I])); ListItem.SubItems.Add(ExtractFilePath(OpenDialog1.Files[I])); end else raise Exception.Create('File does not exist.'); end; end; Self.Cursor := previousCursor; OpenDialog1.Files.Free; end; </code></pre> <p>When running the application, selecting the first file, I have no problem but when wanting to select the second one, I get an error saying "Project project3 raised an exception class EInvalidPointer with message 'Invalid Pointer Operation'."</p> <p>What's the cause of this, how do I correct this?</p> http://stackoverflow.com/questions/1049828/visual-basic-opening-a-file-what-is-wrong-with-my-code 0 Visual Basic, Opening a file, what is wrong with my code? JamesM 2009-06-26T15:39:50Z 2009-06-26T15:46:56Z <p>Hi all,</p> <p>The 'reader' within the if statement is showing "Expression is not a method", what am I doing wrong?</p> <p>Thanks</p> <pre><code> Dim reader As New CSVReader OpenFileDialog2.Filter = "CSV File (*.csv)|*.csv" OpenFileDialog2.RestoreDirectory = True If OpenFileDialog2.ShowDialog() = DialogResult.OK Then reader(OpenFileDialog2.FileName) reader.DisplayResults(DataGridView1) 'Return OpenFileDialog2.FileName Else End If </code></pre> <p>I simply moved the Dim and it worked.</p> <pre><code>OpenFileDialog2.InitialDirectory = "a:" OpenFileDialog2.Filter = "CSV File (*.csv)|*.csv" OpenFileDialog2.RestoreDirectory = True If OpenFileDialog2.ShowDialog() = DialogResult.OK Then Dim reader As New CSVReader(OpenFileDialog2.FileName) reader.DisplayResults(DataGridView1) 'Return OpenFileDialog2.FileName Else End If </code></pre> <p>Thanks</p> http://stackoverflow.com/questions/1003397/how-do-i-browse-the-local-directorys-files-without-using-openfiledialog-c 0 How do I browse the local directory's files without using OpenFileDialog? (C#) PlayKid 2009-06-16T19:07:32Z 2009-06-16T19:37:17Z <p>Hi There,</p> <p>I want to build something where the user to browse the local files on the application I am providing, the screen is actually identical to OpenFileDialog, but I do not want that to be a dialog but a control on my form.</p> <p>I tried to use a Web Browser control, it works, but I have to write a bunch of navigation code in order for that to work, and another problem is if the user selected any files on that screen, I am not sure how to capture the results.</p> <p>So is there another way to do that? Or maybe override some of the OpenFileDialog control to make it not only showing as a dialog but a normal control.</p> <p>Thanks</p> http://stackoverflow.com/questions/837454/c-making-the-second-and-third-openfiledialog-appear-above-the-console 0 C# Making the second and third OpenFileDialog appear above the console? James Reever 2009-05-07T22:46:31Z 2009-06-09T09:41:36Z <p>I'm writing a console program that can accept 1 to 3 files. I'm using OpenFileDialog three times to accept the files, but the second time and third the file dialog is behind the console window, making it hard to notice. Any way to get it to appear above?</p> <p>An image of the problem: <a href="http://img205.imageshack.us/img205/5312/problemr.png" rel="nofollow">http://img205.imageshack.us/img205/5312/problemr.png</a></p> <p>The relevant code is:</p> <pre><code>static bool loadFile(ref List&lt;string&gt; ls) { OpenFileDialog f = new OpenFileDialog(); if (f.ShowDialog() == DialogResult.OK) { Console.WriteLine("Loaded file {0}", f.FileName); ls.Add(f.FileName); return true; } else { return false; } } [STAThread] static void Main(string[] args) { //sanity check if (args.Length &gt; 3) { Console.WriteLine("Sorry, this program currently supports a maximum of three different reports to analyze at a time."); return; } else if (args.Length == 0) { List&lt;string&gt; fL = new List&lt;string&gt;(); for (int k = 0; k &lt; 3; k++) { if (!loadFile(ref fL)) break; } if (fL.Count == 0) { InfoDisplay.HelpMessage(); return; } else { args = fL.ToArray(); } } //main program </code></pre>