<?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 This is just a guess (flying in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Failure-to-write-to-Edit-boxes/m-p/1110649#M129130</link>
    <description>&lt;P&gt;This is just a guess (flying leap). Due to smaller dialogs working, I suspect that for the 32-bit CVF generated program that an I/O buffer for reading the resource file is too small. This is something outside your control. A work around (hack)&amp;nbsp;might be to split your massive dialog box into two windows:&lt;/P&gt;

&lt;P&gt;1) A window showing the static text with background as seen&lt;BR /&gt;
	2) A window with all your modifying controls... with transparent background&lt;/P&gt;

&lt;P&gt;Then Launch the static&amp;nbsp;window (1)&amp;nbsp;as modless dialog, then launch to dynamic window (2) anchored at the coordinate of the static window.&lt;/P&gt;

&lt;P&gt;Prior to a formal conversion/test, (after backing up your current resource file) try (quickly) stripping out all the static text of your resource and making the background transparent. See if this runs .AND. has see-through. If that works, make the dialog 1 from your old resource as modeless, and anchor the edit controls window 2 to the static text window 1.&lt;/P&gt;

&lt;P&gt;Jim Dempsey&lt;/P&gt;</description>
    <pubDate>Sun, 05 Mar 2017 15:47:37 GMT</pubDate>
    <dc:creator>jimdempseyatthecove</dc:creator>
    <dc:date>2017-03-05T15:47:37Z</dc:date>
    <item>
      <title>Failure to write to Edit boxes</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Failure-to-write-to-Edit-boxes/m-p/1110642#M129123</link>
      <description>&lt;P&gt;I'm back after a retirement break, and am still using CVF6.6C - with the aid of XPMode on my current 64-bit machine.&lt;/P&gt;

&lt;P&gt;I've tried to use an old program but could not resist improving it.&amp;nbsp; This has led to aproblem that I haven't been able to solve.&amp;nbsp; I have changed the creation of some of itsDialog boxes from using the QuickWin DlgInit to using calls eg:&lt;/P&gt;

&lt;PRE class="brush:fortran;"&gt;iRet = DialogBoxParam(0,MakeIntResource(IDD_DLG_MENUMAIN),0,loc(MainProc), 0).&lt;/PRE&gt;

&lt;P&gt;The use of DialogBoxParam works well on the first usage on a small dialog with 13 controls, but on the next call to the Main Menu with about 420 controls the program crashes when it tries to write/read text in/out any Edit boxes.&amp;nbsp; As an aside, the resource wizard only works up to 255 controls, so I produced the other controls by editing the resource file in Notepad.&lt;/P&gt;

&lt;P&gt;The trouble occurs in the callback procedure MainProc in the Message case WM_INITDIALOG. I can write text successfully to a Static control using eg:&lt;/P&gt;

&lt;PRE class="brush:fortran;"&gt;bRet = SetDlgItemText(hDlg, IDC_STATIC_GTVER, Cstring(TrimAll(NameVers))),&lt;/PRE&gt;

&lt;P&gt;but as soon as I try to write to an Edit control it goes ape.&amp;nbsp; I have made sure the controls are enabled and I have tried amongst other variations:&lt;/P&gt;

&lt;PRE class="brush:fortran;"&gt;bRet = SetDlgItemText(hDlg, IDC_EDIT_MV, '878.00000'C)),
iRet = SendMessage(GetDlgItem(hDlg, IDC_EDIT_MV), WM_SETTEXT, 0, loc(TestStr)),
iRet = SendMessage(GetDlgItem(hDlg, IDC_EDIT_MV), WM_PASTE, 0, 0).&lt;/PRE&gt;

&lt;P&gt;None of them work, just crash the program.&amp;nbsp; I inserted a DialogBoxParam test dialog with one Edit box immediately before the call to the Main Menu.&amp;nbsp; It works fine.&lt;/P&gt;

&lt;P&gt;Due to size limitations I cannot attach a screen shot of the complete dialog box, so I&amp;nbsp;attach two partial screen shots of the dialog when it was working with a DlgInit call - TopGtjDlg.jpg and BtmGtjDlg.jpg.&amp;nbsp; In the current version, bypassing all the initial write instructions leads to a dialog with blank Edit boxes where clicking on any Edit box causes a program crash.&lt;/P&gt;

&lt;P&gt;Do you think the large number of controls is the cause?&amp;nbsp; Am I doomed to set it back to its old QuickWin version?&amp;nbsp; Any help or suggestions gratefully welcomed.&lt;/P&gt;

&lt;P&gt;Bear&lt;/P&gt;</description>
      <pubDate>Sat, 04 Mar 2017 17:58:39 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Failure-to-write-to-Edit-boxes/m-p/1110642#M129123</guid>
      <dc:creator>BearofLittleBrain</dc:creator>
      <dc:date>2017-03-04T17:58:39Z</dc:date>
    </item>
    <item>
      <title>Are you compiling Win32 or</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Failure-to-write-to-Edit-boxes/m-p/1110643#M129124</link>
      <description>&lt;P&gt;Are you compiling Win32 or x64?&lt;/P&gt;

&lt;P&gt;You might be running into a number of handles limit &lt;A href="https://msdn.microsoft.com/en-us/library/windows/desktop/ms725486(v=vs.85).aspx"&gt;see&lt;/A&gt;. Look at:&lt;/P&gt;

&lt;P&gt;HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Windows\USERProcessHandleQuota&lt;/P&gt;

&lt;P&gt;You may need to increase this value if too low (max value is 65,536).&lt;/P&gt;

&lt;P&gt;If it is not a handle issue, then you likely made an edit error. Check your edits to assure you have not used the same control ID more than once. I do not recall at this time if you are permitted to have gaps in the ID's&lt;/P&gt;

&lt;P&gt;Jim Dempsey&lt;/P&gt;</description>
      <pubDate>Sat, 04 Mar 2017 19:02:54 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Failure-to-write-to-Edit-boxes/m-p/1110643#M129124</guid>
      <dc:creator>jimdempseyatthecove</dc:creator>
      <dc:date>2017-03-04T19:02:54Z</dc:date>
    </item>
    <item>
      <title>Also, be aware that HANDLE is</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Failure-to-write-to-Edit-boxes/m-p/1110644#M129125</link>
      <description>&lt;P&gt;Also, be aware that HANDLE is:&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; type PVOID HANDLE;&lt;/P&gt;

&lt;P&gt;Older programs (CVF era) assumed HANDLE and DWORD (and INTEGER) were interchangeable. On Win32 they are, on x64 they are not.&lt;/P&gt;

&lt;P&gt;Jim Dempsey&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 04 Mar 2017 19:08:02 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Failure-to-write-to-Edit-boxes/m-p/1110644#M129125</guid>
      <dc:creator>jimdempseyatthecove</dc:creator>
      <dc:date>2017-03-04T19:08:02Z</dc:date>
    </item>
    <item>
      <title>CVF was 32-bit only.</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Failure-to-write-to-Edit-boxes/m-p/1110645#M129126</link>
      <description>&lt;P&gt;CVF was 32-bit only.&lt;/P&gt;</description>
      <pubDate>Sat, 04 Mar 2017 19:10:52 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Failure-to-write-to-Edit-boxes/m-p/1110645#M129126</guid>
      <dc:creator>Steve_Lionel</dc:creator>
      <dc:date>2017-03-04T19:10:52Z</dc:date>
    </item>
    <item>
      <title>Jim, Steve,</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Failure-to-write-to-Edit-boxes/m-p/1110646#M129127</link>
      <description>&lt;P&gt;Jim, Steve,&lt;/P&gt;

&lt;P&gt;Thanks for your responses: as Steve says, I run 32-bit CVF on my Windows 7&amp;nbsp;64-bit machine (by using Windows XPMode, so CVF&amp;nbsp;is actually run as it was in Windows XP).&amp;nbsp; XPMode is not the most stable application, but has been running smoothly now that&amp;nbsp;I have got used to it.&amp;nbsp;&lt;/P&gt;

&lt;P&gt;HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Windows\USERProcessHandleQuota gave a value of 10,000, so I upped it to 20,000 - but no change - the program still crashes.&amp;nbsp;I don't think that I have programmed anything into the code that creates thousands of&amp;nbsp;extra handles, so the result does not surprise me.&amp;nbsp; I have carefully looked through the resource .h &amp;amp; .fd files because my first thought was that there was some duplication or other error in IDs that the compiler had not flagged up.&amp;nbsp; But&amp;nbsp;they look OK.&amp;nbsp; The&amp;nbsp;.rc resource file itself has not changed from when it worked with QuickWin dialog calls, and the &lt;FONT face="Courier New"&gt;IDD_DLG_MENUMAIN &lt;/FONT&gt;dialog coding looks perfectly OK.&lt;/P&gt;

&lt;P&gt;Bear&lt;/P&gt;</description>
      <pubDate>Sat, 04 Mar 2017 22:15:11 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Failure-to-write-to-Edit-boxes/m-p/1110646#M129127</guid>
      <dc:creator>BearofLittleBrain</dc:creator>
      <dc:date>2017-03-04T22:15:11Z</dc:date>
    </item>
    <item>
      <title>Nowhere do I see the actual</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Failure-to-write-to-Edit-boxes/m-p/1110647#M129128</link>
      <description>&lt;P&gt;Nowhere do I see the actual error message - just a mention that the program "crashed". The full and complete text of the error message, ideally with a traceback and identification of the lines in question, are the very basic information needed to help resolve any problem.&lt;/P&gt;</description>
      <pubDate>Sat, 04 Mar 2017 23:56:34 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Failure-to-write-to-Edit-boxes/m-p/1110647#M129128</guid>
      <dc:creator>Steve_Lionel</dc:creator>
      <dc:date>2017-03-04T23:56:34Z</dc:date>
    </item>
    <item>
      <title>Steve,</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Failure-to-write-to-Edit-boxes/m-p/1110648#M129129</link>
      <description>&lt;P&gt;Steve,&lt;/P&gt;

&lt;P&gt;Enlightenment starts to dawn (I think): - it's a .dll problem.&amp;nbsp; Because all my other programs with dialogue boxes that I had converted to DialogBoxParam calls have worked perfectly, I have been disregarding the fact that I was getting a load of .dll warnings on running the programs:&lt;/P&gt;

&lt;P&gt;Loaded 'ntdll.dll', no matching symbolic information found.&lt;BR /&gt;
	Loaded 'C:\WINDOWS\system32\kernel32.dll', no matching symbolic information found.&lt;BR /&gt;
	Loaded 'C:\WINDOWS\system32\user32.dll', no matching symbolic information found.&lt;BR /&gt;
	&amp;nbsp;- plus all the rest of the usual .dlls.&lt;/P&gt;

&lt;P&gt;The code snippet below fails on the last line shown, emits a WM_COMMAND message with IDC = IDC_EDIT_MV, comes back&amp;nbsp;into MainProc again and goes to the IDC_EDIT_MV case in the WM_COMMAND section.&amp;nbsp; The program then fails because a load of settings in the WM_INITDIALOG section have not been made.&lt;/P&gt;

&lt;PRE class="brush:fortran;"&gt;iRet = DialogBoxParam(0, MakeIntResource(IDD_DLG_MENUMAIN), 0, loc(MainProc), 0)
return
end subroutine MainMenu
!
!-------------------------------------------------------------------------------
integer*4 function MainProc(hDlg, Message, wParam, lParam)
!DEC$ ATTRIBUTES STDCALL :: MainProc
! Main callback for IDD_DLG_MENUMAIN
!
implicit none
integer*4, intent(inout) :: hDlg&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ! Dialog box window handle.
integer*4, intent(in)&amp;nbsp;&amp;nbsp;&amp;nbsp; :: Message&amp;nbsp;&amp;nbsp; ! Integer identifying the window message.
integer*4, intent(in)&amp;nbsp;&amp;nbsp;&amp;nbsp; :: wParam&amp;nbsp;&amp;nbsp;&amp;nbsp; ! Message-specific information (hdcCtrl).
integer*4, intent(in)&amp;nbsp;&amp;nbsp;&amp;nbsp; :: lParam&amp;nbsp;&amp;nbsp;&amp;nbsp; ! Message-specific information (hwndCtrl).
integer*4&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; :: hdcCtrl&amp;nbsp;&amp;nbsp; ! Control DC handle.
integer*4&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; :: hwndCtrl&amp;nbsp; ! Control handle.
integer*4&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; :: iRadio&amp;nbsp;&amp;nbsp;&amp;nbsp; ! Radio button index.
logical*1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; :: ErrA&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ! Error flag.
logical*1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; :: NonZero&amp;nbsp;&amp;nbsp; ! NonZero flag - true if data present.
hdcCtrl&amp;nbsp; = wParam
hwndCtrl = lParam
IDC&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = GetDlgCtrlID(lParam)
select case (Message)
&amp;nbsp; !
&amp;nbsp; case (WM_INITDIALOG)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ! Message: initialize the dialog box.
&amp;nbsp;&amp;nbsp;&amp;nbsp; bRet = SetDlgItemText(hDlg, IDC_EDIT_MV, '878.0'C)&lt;/PRE&gt;

&lt;P&gt;I have tried a number of&amp;nbsp; settings changes in Project/Settings/Fortran/Libraries/Use run time library and Project/Settings/C++/Code Generation/Use run-time library as suggested by Jugoslav and you in the thread "Visual Fortran - Access Violation (ntdll.dll)" of 1 Sep 2004 to no avail.&amp;nbsp; I suspect that it fails because the program is QuickWin and I am trying to do too much in Windows programming.&amp;nbsp; Why it works for smaller dialogs is odd.&lt;/P&gt;

&lt;P&gt;Bear&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 05 Mar 2017 15:12:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Failure-to-write-to-Edit-boxes/m-p/1110648#M129129</guid>
      <dc:creator>BearofLittleBrain</dc:creator>
      <dc:date>2017-03-05T15:12:17Z</dc:date>
    </item>
    <item>
      <title>This is just a guess (flying</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Failure-to-write-to-Edit-boxes/m-p/1110649#M129130</link>
      <description>&lt;P&gt;This is just a guess (flying leap). Due to smaller dialogs working, I suspect that for the 32-bit CVF generated program that an I/O buffer for reading the resource file is too small. This is something outside your control. A work around (hack)&amp;nbsp;might be to split your massive dialog box into two windows:&lt;/P&gt;

&lt;P&gt;1) A window showing the static text with background as seen&lt;BR /&gt;
	2) A window with all your modifying controls... with transparent background&lt;/P&gt;

&lt;P&gt;Then Launch the static&amp;nbsp;window (1)&amp;nbsp;as modless dialog, then launch to dynamic window (2) anchored at the coordinate of the static window.&lt;/P&gt;

&lt;P&gt;Prior to a formal conversion/test, (after backing up your current resource file) try (quickly) stripping out all the static text of your resource and making the background transparent. See if this runs .AND. has see-through. If that works, make the dialog 1 from your old resource as modeless, and anchor the edit controls window 2 to the static text window 1.&lt;/P&gt;

&lt;P&gt;Jim Dempsey&lt;/P&gt;</description>
      <pubDate>Sun, 05 Mar 2017 15:47:37 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Failure-to-write-to-Edit-boxes/m-p/1110649#M129130</guid>
      <dc:creator>jimdempseyatthecove</dc:creator>
      <dc:date>2017-03-05T15:47:37Z</dc:date>
    </item>
    <item>
      <title>Jim,</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Failure-to-write-to-Edit-boxes/m-p/1110650#M129131</link>
      <description>&lt;P&gt;Jim,&lt;/P&gt;

&lt;P&gt;Thanks for your comments.&amp;nbsp; Whatever the cause of my problem, the Dempsey kludge is worth trying.&amp;nbsp; I will give it a whirl.&amp;nbsp; Don't hold your breath because it is Sunday evening over here.&lt;/P&gt;

&lt;P&gt;Bear&lt;/P&gt;</description>
      <pubDate>Sun, 05 Mar 2017 17:11:05 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Failure-to-write-to-Edit-boxes/m-p/1110650#M129131</guid>
      <dc:creator>BearofLittleBrain</dc:creator>
      <dc:date>2017-03-05T17:11:05Z</dc:date>
    </item>
    <item>
      <title>Jim,</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Failure-to-write-to-Edit-boxes/m-p/1110651#M129132</link>
      <description>&lt;P&gt;Jim,&lt;/P&gt;

&lt;P&gt;I stripped out all but the 62 Edit boxes &amp;amp; 5 buttons - alas no change at all, but thanks for an excellent suggestion.&amp;nbsp; I have checked some of my other QuickWin programs where I use DialogBoxParam and they all complain about the .dll files (but they work).&amp;nbsp; So I will have another hard look to see if there is anything significantly different about this program.&lt;/P&gt;

&lt;P&gt;Bear&lt;/P&gt;</description>
      <pubDate>Sun, 05 Mar 2017 17:55:31 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Failure-to-write-to-Edit-boxes/m-p/1110651#M129132</guid>
      <dc:creator>BearofLittleBrain</dc:creator>
      <dc:date>2017-03-05T17:55:31Z</dc:date>
    </item>
    <item>
      <title>Quote:BearofLittleBrain wrote</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Failure-to-write-to-Edit-boxes/m-p/1110652#M129133</link>
      <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;BearofLittleBrain wrote:&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;Enlightenment starts to dawn (I think): - it's a .dll problem.&amp;nbsp; Because all my other programs with dialogue boxes that I had converted to DialogBoxParam calls have worked perfectly, I have been disregarding the fact that I was getting a load of .dll warnings on running the programs:&lt;/P&gt;

&lt;P&gt;Loaded 'ntdll.dll', no matching symbolic information found.&lt;BR /&gt;
	Loaded 'C:\WINDOWS\system32\kernel32.dll', no matching symbolic information found.&lt;BR /&gt;
	Loaded 'C:\WINDOWS\system32\user32.dll', no matching symbolic information found.&lt;BR /&gt;
	&amp;nbsp;- plus all the rest of the usual .dlls.&lt;/P&gt;

&lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;Those messages are unlikely to be relevant.&amp;nbsp; They just indicate that the debugger is unable to find the matching symbol file for the particular DLL, most likely because the symbol files are not installed on your computer.&amp;nbsp; The presence or absence of a symbol file should not change run time behaviour, it just provides additional information to the debugger if you are debugging inside one of those DLL's.&amp;nbsp;&lt;/P&gt;

&lt;P&gt;These days Visual Studio can automatically download the relevant symbol files for operating system DLL's on the fly, in eras past you needed to do this ahead of time.&lt;/P&gt;

&lt;P&gt;Perhaps there is some interaction between quickwin and your code that is problematic, but without seeing code that lets us reproduce the problem, we are likely all just guessing.&lt;/P&gt;

&lt;P&gt;(Where is the WM_COMMAND coming from?)&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 05 Mar 2017 19:44:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Failure-to-write-to-Edit-boxes/m-p/1110652#M129133</guid>
      <dc:creator>IanH</dc:creator>
      <dc:date>2017-03-05T19:44:00Z</dc:date>
    </item>
    <item>
      <title>In the debugger "Loaded 'C:</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Failure-to-write-to-Edit-boxes/m-p/1110653#M129134</link>
      <description>&lt;P&gt;In the debugger "&lt;SPAN style="font-size: 12px;"&gt;Loaded 'C:\WINDOWS\system32\kernel32.dll', no matching symbolic information found". warnings are quite normal it just means the Microsoft system dll's do not have debug symbols available.&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 12px;"&gt;CVF is a long time ago for me but I know with IVF you can have some issues using Quickwin and SDK dialogs (rather than IFLOGM) dialog boxes due &amp;nbsp;to windows message processing. When you write to an edit box there will be a message generated to say it has changed, with a static I don't think you get that.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 05 Mar 2017 21:16:56 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Failure-to-write-to-Edit-boxes/m-p/1110653#M129134</guid>
      <dc:creator>andrew_4619</dc:creator>
      <dc:date>2017-03-05T21:16:56Z</dc:date>
    </item>
    <item>
      <title>Ian, Andrew,</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Failure-to-write-to-Edit-boxes/m-p/1110654#M129135</link>
      <description>&lt;P&gt;Ian, Andrew,&lt;/P&gt;

&lt;P&gt;Thanks for your comments - all the 32-bit dll files are in the XPMode C:|Windows\System32 directory as one would expect, so I am relieved that they are not the basic trouble.&lt;/P&gt;

&lt;P&gt;Jim's suggestion led me to try successively removing controls from the dialog and I finished up with just 1 Edit box (&lt;FONT face="Courier New"&gt;IDC_EDIT_MV)&lt;/FONT&gt;&amp;nbsp;&amp;amp; 1 Button.&amp;nbsp; It still fails.&amp;nbsp; This tells me that I have screwed up somewhere in writing MainProc.&amp;nbsp; I will retreat to my lair and start writing it from scratch again (together with its companion update subroutine, about 1360 lines of code in total).&amp;nbsp; I will let you know how I get on when it is working, but in the meantime thanks to all of you who have responded and helped me clarify my thoughts.&lt;/P&gt;

&lt;P&gt;Bear&lt;/P&gt;</description>
      <pubDate>Sun, 05 Mar 2017 22:07:52 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Failure-to-write-to-Edit-boxes/m-p/1110654#M129135</guid>
      <dc:creator>BearofLittleBrain</dc:creator>
      <dc:date>2017-03-05T22:07:52Z</dc:date>
    </item>
    <item>
      <title>BTW Poo Bear looks like he is</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Failure-to-write-to-Edit-boxes/m-p/1110655#M129136</link>
      <description>&lt;P&gt;BTW Poo Bear looks like he is working on your resource file....&lt;/P&gt;

&lt;P&gt;Jim Dempsey&lt;/P&gt;</description>
      <pubDate>Mon, 06 Mar 2017 13:00:14 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Failure-to-write-to-Edit-boxes/m-p/1110655#M129136</guid>
      <dc:creator>jimdempseyatthecove</dc:creator>
      <dc:date>2017-03-06T13:00:14Z</dc:date>
    </item>
  </channel>
</rss>

