<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Save file by fortran code in Windows 7 in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Save-file-by-fortran-code-in-Windows-7/m-p/783006#M28699</link>
    <description>Hello,&lt;BR /&gt;&lt;BR /&gt;have a look at those threads:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://software.intel.com/en-us/forums/showthread.php?t=81022" target="_blank"&gt;http://software.intel.com/en-us/forums/showthread.php?t=81022&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://software.intel.com/en-us/forums/showthread.php?t=80721" target="_blank"&gt;http://software.intel.com/en-us/forums/showthread.php?t=80721&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;both showing a connection between the dialog and the stack reserve size. This is a problem i only have with Vista and win 7 &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Frank&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Tue, 26 Jul 2011 16:28:17 GMT</pubDate>
    <dc:creator>tropfen</dc:creator>
    <dc:date>2011-07-26T16:28:17Z</dc:date>
    <item>
      <title>Save file by fortran code in Windows 7</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Save-file-by-fortran-code-in-Windows-7/m-p/783003#M28696</link>
      <description>I have a code to save a file in Window. The code provide to open the window to select the directory to save.&lt;BR /&gt;&lt;BR /&gt;subroutine SAVE_FILE(filter_spec,titolo_open,exes,file_spec,initial_file,&amp;amp;&lt;BR /&gt; initial_dir_file,status)&lt;BR /&gt;&lt;BR /&gt; use comdlg32&lt;BR /&gt;&lt;BR /&gt; implicit none&lt;BR /&gt;&lt;BR /&gt; integer status&lt;BR /&gt;&lt;BR /&gt; character*256 initial_file,initial_dir_file,filter_spec,file_spec&lt;BR /&gt; character*100 titolo_open,exes&lt;BR /&gt;&lt;BR /&gt; type(T_OPENFILENAME) ofn&lt;BR /&gt;&lt;BR /&gt;! *****************************************************************************&lt;BR /&gt;&lt;BR /&gt; ofn%lStructSize = sizeof(ofn)&lt;BR /&gt; ofn%hwndOwner = null !GETHWNDQQ(QWIN$FRAMEWINDOW) &lt;BR /&gt; ofn%hInstance = null &lt;BR /&gt; ofn%lpstrFilter = loc(filter_spec)&lt;BR /&gt; ofn%lpstrCustomFilter = null&lt;BR /&gt; ofn%nMaxCustFilter = 0&lt;BR /&gt; ofn%nFilterIndex = 1 ! Specifies initial filter value&lt;BR /&gt; ofn%lpstrFile = loc(initial_file)&lt;BR /&gt; ofn%nMaxFile = 256&lt;BR /&gt; ofn%lpstrFileTitle = LOC(file_spec)&lt;BR /&gt; ofn%nMaxFileTitle = 256&lt;BR /&gt; ofn%lpstrInitialDir = loc(initial_dir_file) !NULL ! Use Windows default directory&lt;BR /&gt; ofn%lpstrTitle = loc(titolo_open)&lt;BR /&gt; ofn%nfileOffset = 0&lt;BR /&gt; ofn%nFileExtension = 0&lt;BR /&gt; ofn%lpstrDefExt = loc(exes)&lt;BR /&gt; ofn%Flags = 0&lt;BR /&gt; ofn%lpfnHook = null&lt;BR /&gt; ofn%lpTemplateName = null&lt;BR /&gt; &lt;BR /&gt; status = GetSaveFileName(ofn)&lt;BR /&gt;&lt;BR /&gt; return&lt;BR /&gt;end&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;For this subroutine, no problem has been registered in Windows XP.&lt;BR /&gt;&lt;BR /&gt;In Windows 7 (32 and 64 bit), in any case, the window to select the directory not allowed the selection. In particular, the selection of button "save" not produce any effect and the whole program not respond.&lt;BR /&gt;&lt;BR /&gt;What is the problem? Any function are not compatible with W7?&lt;BR /&gt;&lt;BR /&gt;Thank you in advance!</description>
      <pubDate>Tue, 26 Jul 2011 08:28:04 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Save-file-by-fortran-code-in-Windows-7/m-p/783003#M28696</guid>
      <dc:creator>baldas10</dc:creator>
      <dc:date>2011-07-26T08:28:04Z</dc:date>
    </item>
    <item>
      <title>Save file by fortran code in Windows 7</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Save-file-by-fortran-code-in-Windows-7/m-p/783004#M28697</link>
      <description>We cannot see what values you supply for the subroutine arguments. It would help if we could see them.&lt;BR /&gt;&lt;BR /&gt;Make sure all your strings are null-terminated. We also ened to see your filter arrray.&lt;BR /&gt;&lt;BR /&gt;The filter string must be an array of pairs of null-terminated strings, terminated byTWO null characters. To quote:&lt;BR /&gt;"&lt;DL&gt;&lt;DT&gt;&lt;B&gt;lpstrFilter&lt;/B&gt; 
&lt;/DT&gt;&lt;DD&gt;Pointer to a buffer containing pairs of null-terminated filter strings. The 
last string in the buffer must be terminated by two NULL characters. 
&lt;P&gt;The first string in each pair is a display string that describes the filter 
(for example, "Text Files"), and the second string specifies the filter pattern 
(for example, "*.TXT"). To specify multiple filter patterns for a single display 
string, use a semicolon to separate the patterns (for example, 
"*.TXT;*.DOC;*.BAK"). A pattern string can be a combination of valid filename 
characters and the asterisk (*) wildcard character. Do not include spaces in the 
pattern string. 
&lt;/P&gt;&lt;P&gt;The system does not change the order of the filters. It displays them in the 
&lt;B&gt;File&lt;/B&gt; &lt;B&gt;Types&lt;/B&gt; combo box in the order specified in &lt;B&gt;lpstrFilter&lt;/B&gt;. 

&lt;/P&gt;&lt;P&gt;If &lt;B&gt;lpstrFilter&lt;/B&gt; is NULL, the dialog box does not display any filters."&lt;/P&gt;&lt;/DD&gt;&lt;/DL&gt;</description>
      <pubDate>Tue, 26 Jul 2011 09:06:44 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Save-file-by-fortran-code-in-Windows-7/m-p/783004#M28697</guid>
      <dc:creator>anthonyrichards</dc:creator>
      <dc:date>2011-07-26T09:06:44Z</dc:date>
    </item>
    <item>
      <title>Save file by fortran code in Windows 7</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Save-file-by-fortran-code-in-Windows-7/m-p/783005#M28698</link>
      <description>I will comment that there is a sample provided for GetOpenFileName (GetSaveFileName would be the same) in the "Win32" samples zip file.</description>
      <pubDate>Tue, 26 Jul 2011 13:02:27 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Save-file-by-fortran-code-in-Windows-7/m-p/783005#M28698</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2011-07-26T13:02:27Z</dc:date>
    </item>
    <item>
      <title>Save file by fortran code in Windows 7</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Save-file-by-fortran-code-in-Windows-7/m-p/783006#M28699</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt;have a look at those threads:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://software.intel.com/en-us/forums/showthread.php?t=81022" target="_blank"&gt;http://software.intel.com/en-us/forums/showthread.php?t=81022&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://software.intel.com/en-us/forums/showthread.php?t=80721" target="_blank"&gt;http://software.intel.com/en-us/forums/showthread.php?t=80721&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;both showing a connection between the dialog and the stack reserve size. This is a problem i only have with Vista and win 7 &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Frank&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 26 Jul 2011 16:28:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Save-file-by-fortran-code-in-Windows-7/m-p/783006#M28699</guid>
      <dc:creator>tropfen</dc:creator>
      <dc:date>2011-07-26T16:28:17Z</dc:date>
    </item>
    <item>
      <title>Save file by fortran code in Windows 7</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Save-file-by-fortran-code-in-Windows-7/m-p/783007#M28700</link>
      <description>We are still waiting for more information on the arguments you supply to the subroutine. Then we will be able to try and reproduce your problem.</description>
      <pubDate>Tue, 26 Jul 2011 22:57:44 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Save-file-by-fortran-code-in-Windows-7/m-p/783007#M28700</guid>
      <dc:creator>anthonyrichards</dc:creator>
      <dc:date>2011-07-26T22:57:44Z</dc:date>
    </item>
    <item>
      <title>Save file by fortran code in Windows 7</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Save-file-by-fortran-code-in-Windows-7/m-p/783008#M28701</link>
      <description>Hi,&lt;BR /&gt;this is a example for the call of subroutine.&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;subroutine SAVE_FILE_Q(ANNULLA)&lt;BR /&gt;&lt;BR /&gt; use DFLOGM&lt;BR /&gt; use comdlg32&lt;BR /&gt;&lt;BR /&gt; implicit none&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt; character*100 FILE_IN_CUI_SALVARE,VAR,FILE_ES&lt;BR /&gt; character*100 titolo_open,exes&lt;BR /&gt; character*250 DIRECTORY_SAVE&lt;BR /&gt; character*256 filter_spec,file_spec,pathname&lt;BR /&gt;&lt;BR /&gt; type (dialog) dlg&lt;BR /&gt;&lt;BR /&gt;! *****************************************************************************&lt;BR /&gt;&lt;BR /&gt; SAVE_FILE_NAME=OLD_FILE_NAME&lt;BR /&gt;&lt;BR /&gt; OLD_FILE_NAME = NOME(:len_trim(NOME)-4) // ".q22"C&lt;BR /&gt;&lt;BR /&gt;! *****************************************************************************&lt;BR /&gt;&lt;BR /&gt; filter_spec = "Network File (*.q22)"C//"*.q22"C&lt;BR /&gt; titolo_open = "Save Q22 file"C&lt;BR /&gt; exes = "*.q22"C&lt;BR /&gt;&lt;BR /&gt; status = 0&lt;BR /&gt; call SAVE_FILE(filter_spec,titolo_open,exes,file_spec,OLD_FILE_NAME,&amp;amp;&lt;BR /&gt; pathname1,status)</description>
      <pubDate>Thu, 28 Jul 2011 08:17:59 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Save-file-by-fortran-code-in-Windows-7/m-p/783008#M28701</guid>
      <dc:creator>baldas10</dc:creator>
      <dc:date>2011-07-28T08:17:59Z</dc:date>
    </item>
    <item>
      <title>Save file by fortran code in Windows 7</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Save-file-by-fortran-code-in-Windows-7/m-p/783009#M28702</link>
      <description>&lt;P&gt;First impressions :&lt;BR /&gt;you are concatenating two C strings &lt;/P&gt;&lt;PRE&gt;[bash]filter_spec = "Network File (*.q22)"C//"*.q22"C[/bash]&lt;/PRE&gt;&lt;BR /&gt;Won't SAVE_FILE only see "Network File (*.q22)" ?&lt;BR /&gt;By the way since both strings are literals you don't need to concatenate, just have one string - null terminated.&lt;BR /&gt;&lt;BR /&gt;Secondly (may be a typing mistake) but you call SAVE_FILE with pathname1 instead of pathname.&lt;BR /&gt;&lt;BR /&gt;This is why it is a good thing toattach the actual code rather than an abridged typed version.&lt;BR /&gt;Les</description>
      <pubDate>Thu, 28 Jul 2011 08:39:10 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Save-file-by-fortran-code-in-Windows-7/m-p/783009#M28702</guid>
      <dc:creator>Les_Neilson</dc:creator>
      <dc:date>2011-07-28T08:39:10Z</dc:date>
    </item>
    <item>
      <title>Save file by fortran code in Windows 7</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Save-file-by-fortran-code-in-Windows-7/m-p/783010#M28703</link>
      <description>You are ignoring the instruction&lt;BR /&gt;"&lt;B&gt;lpstrFilter&lt;/B&gt;&lt;DL&gt;&lt;DD&gt;Pointer to a buffer containing pairs of null-terminated filter strings. The 
last string in the buffer must be terminated by two NULL characters."&lt;/DD&gt;&lt;/DL&gt;You may do better to code the following:&lt;BR /&gt;&lt;BR /&gt;character(21) filter_spec(3)&lt;BR /&gt;&lt;BR /&gt;filter_spec(1)="Network File (*.q22)"C ! string is 20 characters + null terminator&lt;BR /&gt;filter_spec(2)=" *.q22"C ! string is 20 characters + null terminator&lt;BR /&gt;filter_spec(3)=""C//""C ! or use char(0)//char(0)&lt;BR /&gt;&lt;BR /&gt;In the subroutine, you will have to declare filter_spec as an array of three, 21-character strings, then specify the following when filling your T_OPENFILENAME structure (call it FRED say)&lt;BR /&gt;&lt;BR /&gt;FRED%LPSTRFILTER  =LOC(FILTER_SPEC(1))&lt;BR /&gt;FRED%LPSTRCUSTOMFILTER=NULL&lt;BR /&gt;FRED%NMAXCUSTFILTER =NULL&lt;BR /&gt;FRED%NFILTERINDEX  =1&lt;BR /&gt;&lt;BR /&gt;See if that works.</description>
      <pubDate>Thu, 28 Jul 2011 09:21:22 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Save-file-by-fortran-code-in-Windows-7/m-p/783010#M28703</guid>
      <dc:creator>anthonyrichards</dc:creator>
      <dc:date>2011-07-28T09:21:22Z</dc:date>
    </item>
    <item>
      <title>Save file by fortran code in Windows 7</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Save-file-by-fortran-code-in-Windows-7/m-p/783011#M28704</link>
      <description>Dear Anthony,&lt;BR /&gt;with your suggestion the problem is the same.</description>
      <pubDate>Thu, 28 Jul 2011 14:24:06 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Save-file-by-fortran-code-in-Windows-7/m-p/783011#M28704</guid>
      <dc:creator>baldas10</dc:creator>
      <dc:date>2011-07-28T14:24:06Z</dc:date>
    </item>
    <item>
      <title>Save file by fortran code in Windows 7</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Save-file-by-fortran-code-in-Windows-7/m-p/783012#M28705</link>
      <description>I try to remove the double C strings, but this not resolv the problem.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Baldas</description>
      <pubDate>Thu, 28 Jul 2011 14:26:32 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Save-file-by-fortran-code-in-Windows-7/m-p/783012#M28705</guid>
      <dc:creator>baldas10</dc:creator>
      <dc:date>2011-07-28T14:26:32Z</dc:date>
    </item>
    <item>
      <title>Save file by fortran code in Windows 7</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Save-file-by-fortran-code-in-Windows-7/m-p/783013#M28706</link>
      <description>Are you using multithreading?&lt;BR /&gt;Are you using COM (CoInitialize)?</description>
      <pubDate>Thu, 28 Jul 2011 15:45:13 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Save-file-by-fortran-code-in-Windows-7/m-p/783013#M28706</guid>
      <dc:creator>anthonyrichards</dc:creator>
      <dc:date>2011-07-28T15:45:13Z</dc:date>
    </item>
    <item>
      <title>Save file by fortran code in Windows 7</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Save-file-by-fortran-code-in-Windows-7/m-p/783014#M28707</link>
      <description>Dear Anthony,&lt;BR /&gt;I not use multithreading, but I'm not sure of this.</description>
      <pubDate>Fri, 29 Jul 2011 08:50:15 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Save-file-by-fortran-code-in-Windows-7/m-p/783014#M28707</guid>
      <dc:creator>baldas10</dc:creator>
      <dc:date>2011-07-29T08:50:15Z</dc:date>
    </item>
    <item>
      <title>Save file by fortran code in Windows 7</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Save-file-by-fortran-code-in-Windows-7/m-p/783015#M28708</link>
      <description>It maybe that you will have to try and start using the new Common Item Dialogs &lt;BR /&gt;(see &lt;A href="http://msdn.microsoft.com/en-us/library/bb776913%28v=vs.85%29.aspx)" target="_blank"&gt;http://msdn.microsoft.com/en-us/library/bb776913%28v=vs.85%29.aspx)&lt;/A&gt;. &lt;BR /&gt;&lt;BR /&gt;To quote:&lt;BR /&gt;"Starting with WindowsVista, the Common Item Dialog supersedes the older
 Common File Dialog when used to open or save a file. The Common Item 
Dialog is used in two variations: the &lt;B&gt;Open&lt;/B&gt; dialog and the &lt;B&gt;Save&lt;/B&gt; dialog. These two dialogs share most of their functionality, but each has its own unique methods."&lt;BR /&gt;&lt;BR /&gt;In which case it looks like you will have to get into the IVF Module Wizard and COM!&lt;BR /&gt;If you know some Visual Basic, it would be worth writing some VB code to use the new common dialog class, get it to work, and then translate the VB code into Fortran code using Module Wizard code for calling interface methods obtained by using the module wizard on the appropriate type library. Or There is sample C++ code supplied in the link above.&lt;BR /&gt;&lt;BR /&gt;It would be nice if Intel could generate a sample which illustrates the use of &lt;A href="http://msdn.microsoft.com/en-us/library/bb776913%28v=vs.85%29.aspx#api"&gt;IFileDialog, IFileOpenDialog, and IFileSaveDialog.&lt;SPAN style="text-decoration: underline;"&gt; &lt;/SPAN&gt;!&lt;BR /&gt;&lt;/A&gt;</description>
      <pubDate>Fri, 29 Jul 2011 09:22:36 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Save-file-by-fortran-code-in-Windows-7/m-p/783015#M28708</guid>
      <dc:creator>anthonyrichards</dc:creator>
      <dc:date>2011-07-29T09:22:36Z</dc:date>
    </item>
    <item>
      <title>Save file by fortran code in Windows 7</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Save-file-by-fortran-code-in-Windows-7/m-p/783016#M28709</link>
      <description>&lt;DIV id="tiny_quote"&gt;&lt;DIV style="margin-left: 2px; margin-right: 2px;"&gt;Quoting &lt;A jquery1320916026176="53" rel="/en-us/services/profile/quick_profile.php?is_paid=&amp;amp;user_id=71488" href="https://community.intel.com/en-us/profile/71488/" class="basic"&gt;tropfen&lt;/A&gt;&lt;/DIV&gt;&lt;DIV style="background-color: #e5e5e5; margin-left: 2px; margin-right: 2px; border: 1px inset; padding: 5px;"&gt;&lt;I&gt;Hello,&lt;BR /&gt;&lt;BR /&gt;have a look at those threads:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://software.intel.com/en-us/forums/showthread.php?t=81022" target="_blank"&gt;http://software.intel.com/en-us/forums/showthread.php?t=81022&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://software.intel.com/en-us/forums/showthread.php?t=80721" target="_blank"&gt;http://software.intel.com/en-us/forums/showthread.php?t=80721&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;both showing a connection between the dialog and the stack reserve size. This is a problem i only have with Vista and win 7 &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Frank&lt;BR /&gt;&lt;BR /&gt;&lt;/I&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&lt;BR /&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;we moved to Windows7 as well and weve had the problem that the GetOpenFileName and GetSaveFileName just opened once, but not when we called our subroutine for the second time.&lt;BR /&gt;&lt;BR /&gt;COMMDLGEXTENDEDERROR returned 2, which is CDERR_INITIALIZATION (0x0002 in CDERR.h).&lt;BR /&gt;&lt;BR /&gt;When I set the Stack Reserve Size to 0 our subroutines worked just fine. But why? :-)&lt;BR /&gt;&lt;BR /&gt;Has anyone tried using the new CommonFileDialog for Windows7?&lt;BR /&gt;&lt;BR /&gt;Markus&lt;/P&gt;</description>
      <pubDate>Thu, 10 Nov 2011 09:13:30 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Save-file-by-fortran-code-in-Windows-7/m-p/783016#M28709</guid>
      <dc:creator>onkelhotte</dc:creator>
      <dc:date>2011-11-10T09:13:30Z</dc:date>
    </item>
    <item>
      <title>Save file by fortran code in Windows 7</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Save-file-by-fortran-code-in-Windows-7/m-p/783017#M28710</link>
      <description>Is there a sample of IFileDialog etc. in the making or has anybody tried it succesfully for him-/herself?&lt;BR /&gt;&lt;BR /&gt;Markus</description>
      <pubDate>Mon, 28 Nov 2011 14:04:42 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Save-file-by-fortran-code-in-Windows-7/m-p/783017#M28710</guid>
      <dc:creator>onkelhotte</dc:creator>
      <dc:date>2011-11-28T14:04:42Z</dc:date>
    </item>
    <item>
      <title>Save file by fortran code in Windows 7</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Save-file-by-fortran-code-in-Windows-7/m-p/783018#M28711</link>
      <description>&lt;A href="http://software.intel.com/en-us/forums/showpost.php?p=156346"&gt;This post&lt;/A&gt; has my incomplete attempt from a while back.&lt;BR /&gt;&lt;BR /&gt;The existing Win32 api's are pretty fundamental to the majority of Win32 GUI apps out there. If there was a bug in Windows that broke them I'd expect it to receive a reasonable amount of attention.</description>
      <pubDate>Mon, 28 Nov 2011 23:14:38 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Save-file-by-fortran-code-in-Windows-7/m-p/783018#M28711</guid>
      <dc:creator>IanH</dc:creator>
      <dc:date>2011-11-28T23:14:38Z</dc:date>
    </item>
    <item>
      <title>Save file by fortran code in Windows 7</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Save-file-by-fortran-code-in-Windows-7/m-p/783019#M28712</link>
      <description>Hi there,&lt;BR /&gt;&lt;BR /&gt;are there any samples of the IFileDialog so far? We still have problems using the old GETOPENFILENAME method.&lt;BR /&gt;&lt;BR /&gt;Markus</description>
      <pubDate>Thu, 26 Jul 2012 09:37:37 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Save-file-by-fortran-code-in-Windows-7/m-p/783019#M28712</guid>
      <dc:creator>onkelhotte</dc:creator>
      <dc:date>2012-07-26T09:37:37Z</dc:date>
    </item>
  </channel>
</rss>

