|
Open and Save As Dialog Boxes
The Open dialog box lets the user specify the drive, directory, and the name
of a file or set of files to open. You create and display an Open dialog box by
initializing an OPENFILENAME structure and passing the structure to the GetOpenFileName function.
The Save As dialog box lets the user specify the drive, directory, and name of
a file to save. You create and display a Save As dialog box by initializing an OPENFILENAME structure and passing the structure to the GetSaveFileName function.
Beginning with Windows 95 and Windows NT version 4.0, there is a new version
of the Open and Save As dialog boxes that provides user-interface features that
are similar to the Windows Explorer. However, Win32 continues to support the
old-style Open and Save As dialog boxes for applications that must maintain a
user interface consistent with earlier versions of Windows.
In addition to the difference in appearance, the Explorer-style and old-style
dialog boxes differ in their use of custom templates and hook procedures for
customizing the dialog boxes. However, the Explorer-style and old-style dialog
boxes have the same behavior for most basic operations, such as specifying a
filename filter, validating the user's input, and getting the filename specified by
the user. For more information about the Explorer-style and old-style dialog
boxes, see Open and Save As Customization.The following illustration shows a
typical Explorer-style Open dialog box.
The following illustration shows a typical Explorer-style Save As dialog box.
If the user specifies a filename and clicks the OK button, GetOpenFileName or GetSaveFileName returns TRUE. The buffer pointed to by the lpstrFile member of the OPENFILENAME structure contains the full path and filename specified by the user.
If the user cancels the Open or Save As dialog box or an error occurs, the
function returns FALSE. To determine the cause of the error, call the CommDlgExtendedError function to retrieve the extended error value. If the lpstrFile buffer is too small to receive the full name, CommDlgExtendedError returns FNERR_BUFFERTOOSMALL and the first 2 bytes of the buffer pointed to
by the lpstrFile member are set to an integer value specifying the size required to receive
the full name.
Explorer style dialog boxes are only available to 32-bit applications. 16-bit
applications cannot use thunking to display an Explorer-style dialog box.
Windows 95: 32-bit applications that use the old-style dialog boxes do so using a thunk.
This means that any pointer passed to your hook procedure is a non-persistent
copy of the data. For example, the OPENFILENAME pointer passed in the WM_INITDIALOG message is not a pointer to the buffer
that you originally specified. If you need to pass private data to your hook
procedure, bundle it in a structure and store a pointer to the structure in the lCustData member of the OPENFILENAME structure.
| Last news from Greatis Software |
 |
|
Nostalgia .Net |
|
.Net is powerful, but not all-powerful, so sometimes we need to use Win32 API for our .Net applications. It's simple enough with Platform Invoke if you have Win32 skill, but we do not always have time to dig the ancient documentation, declare the special types that are compatible with Win32, find the values of the Win32's constants and so on. Nostalgia .Net offers several simple-to-use classes, and components that will allow you to forget about the headache of Win32 and just use the power of Win32 in your application the same way as you use the native. Net classes. More » |
| Recommended software for developers |
 |
|
Ultimate Pack |
|
Component pack for Delphi and C++ Builder that contains runtime form designer, runtime object inspector, print suite and much more for the very special price. More » |
 |
|
Form Designer .Net |
|
Unique runtime form design solution that allows to edit any form in .Net WinForms application at runtime with full source codes for only 300 euro! More » |
 |
|
Print Suite .Net |
|
Print Suite .Net is a set of components for easy printing texts, images and grids from your WinForms applications. Full C# source codes are available More » |
 |
|
Gradient Controls .Net |
|
Gradient Controls .Net offers controls with gradient background feature. Labels, panels and so on... Full C# source codes are available More » |
 |
|
Greatis iGrid |
|
iGrid plots drawing grid right over your desktop, so you can use it everywhere, with any drawing application without any special plugins for different graphic editors. More » |
All the contacts and projectsDmitry Vasiliev (just.dmitry)
Related LinksSoftware for Visual Studio .NET developers Software for Delphi and C++ Builder developers Software for Visual Basic 6 developers Delphi Tips&Tricks MegaDetailed.NET More Online Helps Win32 Programmer's Reference Win32 Multimedia Programmer's Reference OLE Programmer's Reference Microsoft Windows Pen API Programmer's Reference Microsoft Windows Sockets 2 Reference Microsoft Windows Telephony API (TAPI) Programmer's Reference Unix Manual Pages
|