<?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 thank you Mr. Lionel you are in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/error-data-type/m-p/984015#M100337</link>
    <description>&lt;P&gt;thank you Mr. Lionel you are my angel!!!!! I forgot to add the .h file and as you said I renamed the file after the building, then I tried to use the "deftofd" on the .rc file not on the .h file.&lt;/P&gt;
&lt;P&gt;Now I add the resource.fd file in a subroutine and I call this subroutine trought a menu button&amp;nbsp;&lt;/P&gt;
&lt;P&gt;external initrett&lt;/P&gt;
&lt;P&gt;....&lt;/P&gt;
&lt;P&gt;bret=appendmenuqq(2,$menuenabled,'Rettangolo'C,initrett)&lt;/P&gt;
&lt;P&gt;....and the subroutine is&lt;/P&gt;
&lt;P&gt;subroutine initrett&lt;BR /&gt; use ifqwin&lt;BR /&gt; use iflogm&lt;BR /&gt; type (dialog) dlg&lt;BR /&gt; real &amp;nbsp;b,h,xo,yo,alfa&lt;BR /&gt; logical(4) bret&lt;BR /&gt; integer(4) iret&lt;BR /&gt; character(25) &amp;nbsp;dato&lt;BR /&gt; include 'resource.fd'&lt;BR /&gt; bret=dlginit(idd_dialog1,dlg)&lt;BR /&gt;&lt;BR /&gt; bret=dlgset(dlg,idc_edit2,'0')&lt;BR /&gt; bret=dlgset(dlg,idc_edit3,'0')&lt;BR /&gt; bret=dlgset(dlg,idc_edit4,'0')&lt;BR /&gt; bret=dlgset(dlg,idc_edit5,'0')&lt;BR /&gt; bret=dlgset(dlg,idc_edit6,'0')&lt;BR /&gt; bret=dlgset(dlg,idc_radio1,.true.)&lt;BR /&gt; bret=dlgset(dlg,idc_radio1,.false.)&lt;/P&gt;
&lt;P&gt;iret=dlgmodal(dlg)&lt;BR /&gt; call dlguninit(dlg)&lt;BR /&gt;end subroutine initrett&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;the program start, but when I click on the "Rettangolo" menu button the program tell me:&lt;/P&gt;
&lt;P&gt;Unhandled exception in 0x7782E8A1 (ntdll.dll) in g-aree.exe: 0xC0000005: Access violation when writing path 0x00150FFC.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 03 Apr 2013 18:50:06 GMT</pubDate>
    <dc:creator>diana_g_1</dc:creator>
    <dc:date>2013-04-03T18:50:06Z</dc:date>
    <item>
      <title>error data type</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/error-data-type/m-p/984005#M100327</link>
      <description>&lt;P&gt;hello, the program give me en error on the subroutine&lt;/P&gt;
&lt;P&gt;SUBROUTINE tteta (ttx,tty)&lt;BR /&gt; use ifqwin&lt;BR /&gt; &lt;BR /&gt; INTEGER(2) line,ttx,tty &lt;BR /&gt; TYPE (xycoord) xy&lt;BR /&gt; CALL moveto(INT2(ttx+2),INT2(tty),xy)&lt;BR /&gt; line=lineto(ttx,tty+4)&lt;BR /&gt; line=lineto(ttx+7,tty+4)&lt;BR /&gt; line=lineto(ttx+5,tty)&lt;BR /&gt; line=lineto(ttx+3,tty)&lt;BR /&gt; CALL moveto(INT2(ttx),INT2(tty+5),xy)&lt;BR /&gt; line=lineto(ttx+2,tty+9)&lt;BR /&gt; line=lineto(ttx+5,tty+9)&lt;BR /&gt; line=lineto(ttx+7,tty+5)&lt;BR /&gt;END SUBROUTINE tteta&lt;/P&gt;
&lt;P&gt;the error is:&lt;/P&gt;
&lt;P&gt;warning #6075: The data type of the actual argument does not match the definition&lt;/P&gt;
&lt;P&gt;where is the problem???&lt;/P&gt;</description>
      <pubDate>Thu, 28 Mar 2013 16:39:29 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/error-data-type/m-p/984005#M100327</guid>
      <dc:creator>diana_g_1</dc:creator>
      <dc:date>2013-03-28T16:39:29Z</dc:date>
    </item>
    <item>
      <title>Is this with warn-interfaces</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/error-data-type/m-p/984006#M100328</link>
      <description>&lt;P&gt;Is this with warn-interfaces (the default in GUI mode)?&amp;nbsp; It would indicate an argument doesn't match your caller, or what is specified in ifqwin.&lt;/P&gt;</description>
      <pubDate>Thu, 28 Mar 2013 17:03:01 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/error-data-type/m-p/984006#M100328</guid>
      <dc:creator>TimP</dc:creator>
      <dc:date>2013-03-28T17:03:01Z</dc:date>
    </item>
    <item>
      <title>In this case, all of the</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/error-data-type/m-p/984007#M100329</link>
      <description>&lt;P&gt;In this case, all of the routines being called are defined in module IFQWIN. The arguments are all declared to be INTEGER(2),&amp;nbsp; but when you say something like tty+4, the 4 is "default integer" (integer(4)), so the expression becomes integer(4), and that's a mismatch.&amp;nbsp; To fix this, add the suffix _2 to all of the integer constants, for example, tty+4_2.&amp;nbsp; This specifies that the 4 (in this case) is to be integer(2).&lt;/P&gt;</description>
      <pubDate>Thu, 28 Mar 2013 17:38:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/error-data-type/m-p/984007#M100329</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2013-03-28T17:38:00Z</dc:date>
    </item>
    <item>
      <title>ok perfect! problem number</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/error-data-type/m-p/984008#M100330</link>
      <description>&lt;P&gt;ok perfect! problem number one solve! thank yuoi!&amp;nbsp;&lt;/P&gt;
&lt;P&gt;now I have another question, I have to do a resource file .fd and I followed the 6 step, but the program give me the error:&lt;/P&gt;
&lt;P&gt;error PRJ0019: A tool returned an error code from "Generating Fortran include file..." Project&lt;/P&gt;
&lt;P&gt;I read the topic at this link&amp;nbsp;http://software.intel.com/en-us/forums/topic/291937 but I haven't found a solution yet!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 29 Mar 2013 09:40:06 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/error-data-type/m-p/984008#M100330</guid>
      <dc:creator>diana_g_1</dc:creator>
      <dc:date>2013-03-29T09:40:06Z</dc:date>
    </item>
    <item>
      <title>Ah, that would be the</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/error-data-type/m-p/984009#M100331</link>
      <description>&lt;P&gt;Ah, that would be the "deftofd" tool. Would you please ZIP the buildlog.htm from the Debug folder and attach it to a reply here? If you would also include the .vfproj file, that would be helpful.&lt;/P&gt;</description>
      <pubDate>Fri, 29 Mar 2013 16:15:57 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/error-data-type/m-p/984009#M100331</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2013-03-29T16:15:57Z</dc:date>
    </item>
    <item>
      <title>here it is! </title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/error-data-type/m-p/984010#M100332</link>
      <description>&lt;P&gt;here it is!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 30 Mar 2013 09:52:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/error-data-type/m-p/984010#M100332</guid>
      <dc:creator>diana_g_1</dc:creator>
      <dc:date>2013-03-30T09:52:00Z</dc:date>
    </item>
    <item>
      <title>Something very strange there.</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/error-data-type/m-p/984011#M100333</link>
      <description>&lt;P&gt;Something very strange there. The error is that it is trying to process rett.h but your project says rett2.h. The latter exists, the former doesn't.&lt;/P&gt;
&lt;P&gt;Please do a build &amp;gt; Rebuild and see if that helps. If not, please attach a zip of the new buildlog.htm&lt;/P&gt;</description>
      <pubDate>Sat, 30 Mar 2013 15:14:02 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/error-data-type/m-p/984011#M100333</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2013-03-30T15:14:02Z</dc:date>
    </item>
    <item>
      <title>sorry I forgot this file</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/error-data-type/m-p/984012#M100334</link>
      <description>&lt;P&gt;sorry I forgot this file resource.h &amp;nbsp;in the zip file&lt;/P&gt;</description>
      <pubDate>Tue, 02 Apr 2013 12:51:38 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/error-data-type/m-p/984012#M100334</guid>
      <dc:creator>diana_g_1</dc:creator>
      <dc:date>2013-04-02T12:51:38Z</dc:date>
    </item>
    <item>
      <title>I recreate the project but</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/error-data-type/m-p/984013#M100335</link>
      <description>&lt;P&gt;I recreate the project but the error was the same! I rebuild and:&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Apr 2013 15:32:02 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/error-data-type/m-p/984013#M100335</guid>
      <dc:creator>diana_g_1</dc:creator>
      <dc:date>2013-04-02T15:32:02Z</dc:date>
    </item>
    <item>
      <title>Diana,</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/error-data-type/m-p/984014#M100336</link>
      <description>&lt;P&gt;Diana,&lt;/P&gt;
&lt;P&gt;You did not quite properly follow the instructions for adding the resource file to the project. It looks to me as if you started to do this, then renamed one of the files, as I can't otherwise figure out how you got the project in the state it's in. The resource.h file that is created by the dialog editor needs to be added to the project and then a custom build step defined for it. You had a custom build step attached to figure.rc.&lt;/P&gt;
&lt;P&gt;I have attached a corrected .vfproj file, but I find that the resource.h and figure.rc files you provided are out of sync (the .rc is looking for an IDC_EDIT1 value that the .h doesn't define), and the .bmp is ,missing, but I think this should get you going again. Note that in the custom build step for resource.h I have the output file labeled figure.fd as that's what your code uses. The instructions are on page 81 of &lt;A href="http://software.intel.com/sites/products/documentation/hpc/composerxe/en-us/fortran/win/pdf/Creating_Fortran_Win_Apps.pdf"&gt;Using Intel Visual Fortran to Create and Build Windows Applications.&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Apr 2013 15:48:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/error-data-type/m-p/984014#M100336</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2013-04-02T15:48:21Z</dc:date>
    </item>
    <item>
      <title>thank you Mr. Lionel you are</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/error-data-type/m-p/984015#M100337</link>
      <description>&lt;P&gt;thank you Mr. Lionel you are my angel!!!!! I forgot to add the .h file and as you said I renamed the file after the building, then I tried to use the "deftofd" on the .rc file not on the .h file.&lt;/P&gt;
&lt;P&gt;Now I add the resource.fd file in a subroutine and I call this subroutine trought a menu button&amp;nbsp;&lt;/P&gt;
&lt;P&gt;external initrett&lt;/P&gt;
&lt;P&gt;....&lt;/P&gt;
&lt;P&gt;bret=appendmenuqq(2,$menuenabled,'Rettangolo'C,initrett)&lt;/P&gt;
&lt;P&gt;....and the subroutine is&lt;/P&gt;
&lt;P&gt;subroutine initrett&lt;BR /&gt; use ifqwin&lt;BR /&gt; use iflogm&lt;BR /&gt; type (dialog) dlg&lt;BR /&gt; real &amp;nbsp;b,h,xo,yo,alfa&lt;BR /&gt; logical(4) bret&lt;BR /&gt; integer(4) iret&lt;BR /&gt; character(25) &amp;nbsp;dato&lt;BR /&gt; include 'resource.fd'&lt;BR /&gt; bret=dlginit(idd_dialog1,dlg)&lt;BR /&gt;&lt;BR /&gt; bret=dlgset(dlg,idc_edit2,'0')&lt;BR /&gt; bret=dlgset(dlg,idc_edit3,'0')&lt;BR /&gt; bret=dlgset(dlg,idc_edit4,'0')&lt;BR /&gt; bret=dlgset(dlg,idc_edit5,'0')&lt;BR /&gt; bret=dlgset(dlg,idc_edit6,'0')&lt;BR /&gt; bret=dlgset(dlg,idc_radio1,.true.)&lt;BR /&gt; bret=dlgset(dlg,idc_radio1,.false.)&lt;/P&gt;
&lt;P&gt;iret=dlgmodal(dlg)&lt;BR /&gt; call dlguninit(dlg)&lt;BR /&gt;end subroutine initrett&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;the program start, but when I click on the "Rettangolo" menu button the program tell me:&lt;/P&gt;
&lt;P&gt;Unhandled exception in 0x7782E8A1 (ntdll.dll) in g-aree.exe: 0xC0000005: Access violation when writing path 0x00150FFC.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Apr 2013 18:50:06 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/error-data-type/m-p/984015#M100337</guid>
      <dc:creator>diana_g_1</dc:creator>
      <dc:date>2013-04-03T18:50:06Z</dc:date>
    </item>
    <item>
      <title>Would you please attach a ZIP</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/error-data-type/m-p/984016#M100338</link>
      <description>&lt;P&gt;Would you please attach a ZIP of the whole project, including everything needed to build it? I'll take a look.&lt;/P&gt;</description>
      <pubDate>Wed, 03 Apr 2013 19:35:13 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/error-data-type/m-p/984016#M100338</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2013-04-03T19:35:13Z</dc:date>
    </item>
    <item>
      <title>I don't understand what is</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/error-data-type/m-p/984017#M100339</link>
      <description>&lt;P&gt;I don't understand what is wrong now...I'm a disaster...&lt;/P&gt;</description>
      <pubDate>Wed, 03 Apr 2013 20:11:23 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/error-data-type/m-p/984017#M100339</guid>
      <dc:creator>diana_g_1</dc:creator>
      <dc:date>2013-04-03T20:11:23Z</dc:date>
    </item>
    <item>
      <title>Hmm - I can't get this to</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/error-data-type/m-p/984018#M100340</link>
      <description>&lt;P&gt;Hmm - I can't get this to fail. I pull up the Rettangolo option, it displays a new dialog. I type some things in the box and click OK, it goes away. I am not sure what it is supposed to do. If you run this in the debugger, can you see where in the progam it stopped when the error occurred?&lt;/P&gt;</description>
      <pubDate>Wed, 03 Apr 2013 20:57:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/error-data-type/m-p/984018#M100340</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2013-04-03T20:57:00Z</dc:date>
    </item>
    <item>
      <title>what I have to do to run it</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/error-data-type/m-p/984019#M100341</link>
      <description>&lt;P&gt;what I have to do to run it from in the debugger??? I dont understand...sorry for my ignorance...&lt;/P&gt;</description>
      <pubDate>Thu, 04 Apr 2013 05:28:15 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/error-data-type/m-p/984019#M100341</guid>
      <dc:creator>diana_g_1</dc:creator>
      <dc:date>2013-04-04T05:28:15Z</dc:date>
    </item>
    <item>
      <title>Quote:what I have to do to</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/error-data-type/m-p/984020#M100342</link>
      <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;what I have to do to run it from in the debugger?&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Choose the win32/Debug or X64/Debug configuration in Visual Studio.&lt;/P&gt;
&lt;P&gt;I would suggest that, if you are going to run your program under the symbolic debugger, you turn off the /check options. I compiled your sources from the command line with the /Zi option, and the program was built with no error messages. The resulting EXE ran fine in the debugger up to a point -- I don't know what the program is supposed to do, whether the menu choices actually result in actions or the underlying source code is just a skeleton at this stage.&lt;/P&gt;</description>
      <pubDate>Thu, 04 Apr 2013 12:44:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/error-data-type/m-p/984020#M100342</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2013-04-04T12:44:00Z</dc:date>
    </item>
    <item>
      <title>I read other topic to find</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/error-data-type/m-p/984021#M100343</link>
      <description>&lt;P&gt;I read other topic to find something like my problem as:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://software.intel.com/en-us/forums/topic/273908"&gt;http://software.intel.com/en-us/forums/topic/273908&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://software.intel.com/en-us/forums/topic/277220"&gt;http://software.intel.com/en-us/forums/topic/277220&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;but I didn't found a solution. I know the problem is in the line where I call the callback function that create the dialog box but I don't how to solve it&lt;/P&gt;</description>
      <pubDate>Fri, 05 Apr 2013 21:38:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/error-data-type/m-p/984021#M100343</guid>
      <dc:creator>diana_g_1</dc:creator>
      <dc:date>2013-04-05T21:38:00Z</dc:date>
    </item>
  </channel>
</rss>

