using namespace std ; int main ( ) {
OPENFILENAME open_file ,
2
initiera struktur :
char [ 200 ] filnamn , HWND HWND , //överordnade fönstret för dialogHANDLE HF , //handtag för öppna filen
ZeroMemory ( & open_file , sizeof ( open_file ) ) ; open_file.lStructSize = sizeof ( open_file ) , open_file.hwndOwner = HWND , open_file.lpstrFile = filnamn , ofn.lpstrFile [ 0 ] = ' \\ 0 ' ,
3
Använd strukturen i " GetOpenFileName " -funktion för att starta en fil fönsteröppning dialogruta :
GetOpenFileName ( & open_file ) ;
4
ut platsen filkatalog valts av användaren :
printf ( open_file.lpstrFile ) ,