Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
300 views

Win32 GetOpenFileName prevents app from exiting

I'm using Win32 with C++ to make an app that can load the contents of files through a dialog with the GetOpenFileName function. Everything works fine, except when I close the main window and the app ...
1
vote
1answer
110 views

How would one get a UTF-8/Unicode string from GetOpenFileName?

I'm developing an application in MinGW/C++ that uses Windows' common dialogs. The need has arisen to collect a file name that might have non-ASCII characters in it. Is there a flag or another option ...
1
vote
1answer
101 views

OpenFileName with hook results in CDERR_DIALOGFAILURE

I'm getting an error CDERR_DIALOGFAILURE from GetOpenFileName. here's the code... // In WndProc LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) { ...
1
vote
1answer
199 views

Is there a workaround for the character limit on the Windows API function GetOpenFileName() when OFN_ALLOWMULTISELECT?

According to the MSDN documentation, the function GetOpenFileName() has no character limit with option OFN_ALLOWMULTISELECT when compiled for Unicode with Windows 2000 and greater. However, on Windows ...
1
vote
3answers
214 views

GetOpenFileName() kills my background open streams :(

Its a little strange. Ok so I am working with OGRE game engine which has a "SceneManager" class which keeps some files streams open in background. If i use those streams just BEFORE using ...
1
vote
1answer
706 views

GetOpenFileName lpstrInitialDir (directory)… not working for URL (SharePoint)

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 ...
0
votes
1answer
75 views

DialogBoxParam and GetOpenFileName

1st of all,here's my config: VS2010/Debug/C++ Win32 Project/Vista Home Premium Invoking GetOpenFileName via a button (CreateWindow) in a window (CreateWindow) gets me no problem: The Open Dialog ...
0
votes
2answers
65 views

Select file OR folder from same dialog on Windows?

I'd like to allow users of my Windows game to use a dialog box to select a folder or a file. I can currently do one or the other using SHBrowseForFolder or GetOpenFileName, but not both options from ...
0
votes
3answers
84 views

GetOpenFileName never returns when compiled in debug mode (VS2010)

When I compile my program in debug mode GetOpenFileName(&ofn) never returns. It works perfectly fine in release mode. The only difference I can spot is that a lot of things are being optimized ...
0
votes
0answers
85 views

How to detect that file dialog has been created using GetOpenFileName?

I take a part in developing of namespace shell extension(NSE) containing file list from some folders. I have some problems with Open file dialog (OFD) created with the flag OFN_ALLOWMULTISELECT on ...
0
votes
1answer
311 views

OFN_ENABLEHOOK modifies the look of GetOpenFileName()

Why does adding a hook procedure (with the OFN_ENABLEHOOK and OFN_EXPLORER flags) to GetOpenFileName() causes a different dialog to be displayed in Windows 7, if the hook procedure just returns FALSE ...
0
votes
3answers
278 views

semi colons in Windows filenames?

One of my users asked why my app does not support semi-colons in filenames. I stepped through my code, seems Windows function GetOpenFileName truncates any filename containing a semi-colon. e.g. ...
0
votes
1answer
283 views

Windows API GetOpenFileName with template and hook

I'm trying to use a template with GetOpenFileName without success. I've found very little on this topic in the MSDN or on the web. I've based my attempt on what I saw here ...
0
votes
1answer
155 views

QT QFileDialog how to hide hidden/backup folders (“.folder”)

Basically when browsing folders inside a QFileDialog I find very annoying to have everything bloated with hidden or backup folders (don't know how to call them really); specially on home. Is there a ...
0
votes
2answers
991 views

How to show an openfile dialog on windows?

I'm trying to get an openfile dialog to show up on windows CE 6.0 according to msdn it's the same process as in win32, but it doesn't work. I submit for review the interresting part of the code : ...