<?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 Re: colors in dialog in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/colors-in-dialog/m-p/827950#M50993</link>
    <description>Is it created with DialogBox(Param) or with DLGMODAL?</description>
    <pubDate>Mon, 27 Jan 2003 20:30:22 GMT</pubDate>
    <dc:creator>Jugoslav_Dujic</dc:creator>
    <dc:date>2003-01-27T20:30:22Z</dc:date>
    <item>
      <title>colors in dialog</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/colors-in-dialog/m-p/827949#M50992</link>
      <description>Hello!&lt;BR /&gt;Does anyone know if it is possible to change the color of the text in a dialogbox? I am using a Windows-projecttype. I would like to change the color of the text depending on the calculationresult.</description>
      <pubDate>Mon, 27 Jan 2003 19:04:47 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/colors-in-dialog/m-p/827949#M50992</guid>
      <dc:creator>jenny_s</dc:creator>
      <dc:date>2003-01-27T19:04:47Z</dc:date>
    </item>
    <item>
      <title>Re: colors in dialog</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/colors-in-dialog/m-p/827950#M50993</link>
      <description>Is it created with DialogBox(Param) or with DLGMODAL?</description>
      <pubDate>Mon, 27 Jan 2003 20:30:22 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/colors-in-dialog/m-p/827950#M50993</guid>
      <dc:creator>Jugoslav_Dujic</dc:creator>
      <dc:date>2003-01-27T20:30:22Z</dc:date>
    </item>
    <item>
      <title>Re: colors in dialog</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/colors-in-dialog/m-p/827951#M50994</link>
      <description>I used DLGMODAL.</description>
      <pubDate>Mon, 27 Jan 2003 21:01:33 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/colors-in-dialog/m-p/827951#M50994</guid>
      <dc:creator>jenny_s</dc:creator>
      <dc:date>2003-01-27T21:01:33Z</dc:date>
    </item>
    <item>
      <title>Re: colors in dialog</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/colors-in-dialog/m-p/827952#M50995</link>
      <description>See my &lt;A href="http://www.geocities.com/jdujic/fortran/xflogm/xflogm.htm"&gt;extended version of DFLOGM&lt;/A&gt;.&lt;BR /&gt;&lt;BR /&gt;Jugoslav</description>
      <pubDate>Mon, 27 Jan 2003 21:33:26 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/colors-in-dialog/m-p/827952#M50995</guid>
      <dc:creator>Jugoslav_Dujic</dc:creator>
      <dc:date>2003-01-27T21:33:26Z</dc:date>
    </item>
    <item>
      <title>Re: colors in dialog</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/colors-in-dialog/m-p/827953#M50996</link>
      <description>Hi Jugoslav,&lt;BR /&gt;&lt;BR /&gt;and thank you very much for helping me. I downloaded your testfile, and I tried to include your XFLOGM-file in my project, but I got a linking error. Have I done anything wrong? &lt;BR /&gt;error LNK2001: unresolved external symbol _DLGSETTITLE@12&lt;BR /&gt;</description>
      <pubDate>Mon, 27 Jan 2003 22:39:41 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/colors-in-dialog/m-p/827953#M50996</guid>
      <dc:creator>jenny_s</dc:creator>
      <dc:date>2003-01-27T22:39:41Z</dc:date>
    </item>
    <item>
      <title>Re: colors in dialog</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/colors-in-dialog/m-p/827954#M50997</link>
      <description>No you didn't. XFLOGM is based on DFLOGM from CVF 6.0; I didn't manage to keep it up to date with Compaq's additions in the meantime (there aren't many, but DlgSetTitle and ActiveX support are the most important). Thus, the versions "diverged".&lt;BR /&gt;&lt;BR /&gt;Guess I'll add DlgSetTitle support soon; in the meantime, the workaround is to use a dialog-initialization callback: &lt;BR /&gt;&lt;PRE&gt;
i = DlgSetSub(dlg, IDD_DIALOG1, SetDlgTitle)
...
subroutine SetDlgTitle(Dlg,ID,iEvent)
use dflogm
use dfwin, only: SetWindowText
type(Dialog):: Dlg
integer::      id, iEvent, i
i = SetWindowText(Dlg%hWnd, "Your Dialog Title"C)
end subroutine SetDlgTitle
&lt;/PRE&gt;&lt;BR /&gt;Sorry for the inconvenience.&lt;BR /&gt;&lt;BR /&gt;Jugoslav</description>
      <pubDate>Mon, 27 Jan 2003 23:38:32 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/colors-in-dialog/m-p/827954#M50997</guid>
      <dc:creator>Jugoslav_Dujic</dc:creator>
      <dc:date>2003-01-27T23:38:32Z</dc:date>
    </item>
    <item>
      <title>Re: colors in dialog</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/colors-in-dialog/m-p/827955#M50998</link>
      <description>Dear Jugoslav, &lt;BR /&gt;&lt;BR /&gt;Thank you very much for your help. It is now working perfectly. &lt;BR /&gt;&lt;BR /&gt;// Jenny</description>
      <pubDate>Tue, 28 Jan 2003 19:52:11 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/colors-in-dialog/m-p/827955#M50998</guid>
      <dc:creator>jenny_s</dc:creator>
      <dc:date>2003-01-28T19:52:11Z</dc:date>
    </item>
  </channel>
</rss>

