Home
Tutorials
Code Snippets
Code Samples
Downloads
Links

The Blog
Our Projects
About
Contact

::Add RageStorm to Favorites!::

The Blog | Our Projects | Guest Book | About | Contact

 
Code Snippet - File Save/Open Dialog
Author:Arkon
Category:Win32API
File Size:527 Bytes
Uploaded at:27-Nov-02 08:25:26 pm
Description:
  Shows how to use the Save/Open file dialog.
  
char strFileName[256];
OPENFILENAME ofn = {sizeof(OPENFILENAME), NULL, NULL,
                    TEXT("MIDI Files\0*.htm;*.html\0All Files\0*.*\0\0"), NULL,
                    0, 1, strFileName, MAX_PATH, NULL, 0, NULL,
                    TEXT("Open MIDI File"),
                    OFN_FILEMUSTEXIST | OFN_HIDEREADONLY, 0, 0,
                    TEXT(".MID"), 0, NULL, NULL};
 if (GetOpenFileName(&ofn) == TRUE)
 {
  // File was selected.
 }
 else
 {
  // User closed the dialog or something wrong happened.
 }
NOTE:
Comments that will hurt anyone in any way will be deleted.
Don't ask for features, advertise or curse.
If you want to leave a message to the author use the contacts,
if you have any question in relation to your comments please use the forum.
Comments which violate any of these requests will be deleted without further
notice. Use the comment system decently.

Post your comment:
Name:
email:
Comment:
::Top 5 Tutorials::
Embedded Python[116342]
2D Rotated Rectangles Collision Detection[88469]
Keyboard Hook[76724]
UDP[65659]
HTTP Proxy[41049]

::Top 5 Samples::
2D ColDet Rotated Rectangles[11531]
PS2 Mouse Driver[6928]
Wave Format Player[5764]
Reading FAT12[5591]
CodeGuru[5327]


All rights reserved to RageStorm © 2009