<?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: tool tips on buttons ? in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/tool-tips-on-buttons/m-p/810518#M42442</link>
    <description>Thank you very much for your reply. I actually tried to attach tool tips in a dialog, but I appreciate your suggestion and provided "context help" via F1-key and use tooltip from help file using the Workshop from Microsoft. There still arises one problem: I can't get consecutive help for Static Controls, even though with "notify", what enables text writing. I tried to manipulae XFLOGM.f90, because callbacksize is set to 1 for the class = CLS_STATIC but without success. Can you help me in this point? Thanks again.&lt;BR /&gt;W.Presser</description>
    <pubDate>Tue, 06 May 2003 14:59:51 GMT</pubDate>
    <dc:creator>presser</dc:creator>
    <dc:date>2003-05-06T14:59:51Z</dc:date>
    <item>
      <title>tool tips on buttons ?</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/tool-tips-on-buttons/m-p/810515#M42439</link>
      <description>Under this topic I found a message from D.Graham, posted Nov. 2001. &lt;BR /&gt;Because I'm also very interested in tool tips on dialog box items, I tried to transfer the attached software somehow in my QuickWin application, but without success; don't really understand dialog procedures in Win32. Is there any possibility for me to get tips on buttons too?</description>
      <pubDate>Mon, 14 Apr 2003 15:22:25 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/tool-tips-on-buttons/m-p/810515#M42439</guid>
      <dc:creator>presser</dc:creator>
      <dc:date>2003-04-14T15:22:25Z</dc:date>
    </item>
    <item>
      <title>Re: tool tips on buttons ?</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/tool-tips-on-buttons/m-p/810516#M42440</link>
      <description>Your attachment didn't stick, so it's hard to tell whether you're trying it on a toolbar or in a dialog.&lt;BR /&gt;&lt;BR /&gt;Attached (hopefully ;-)) is modified QWToolbar sample which displays tooltips on toolbar buttons. TBSTYLE_TOOLTIPS should be added in CreateToolbarEx. When the tooltip is about to be displayed, it sends a WM_NOTIFY/TTN_GETDISPINFO (a.k.a. TTN_NEEDTEXT) message; the window procedure should either&lt;BR /&gt;- fill in hInst member and put ID of a string resource from the string table into lpszText member&lt;BR /&gt;- put address of a C string into lpszText member.&lt;BR /&gt;The sample illustrates the first technique; a string table is added with string IDs identical to button IDs.&lt;BR /&gt;&lt;BR /&gt;If you want to do it in a dialog, I'd suggest not. Tooltips are used only for bitmapped buttons as in toolbar; in dialogs, they distract user's attention. The preferred way is to provide "context help" button and use tooltip help from help file. See &lt;A href="http://www.geocities.com/jdujic/fortran/xflogm/xflogm.htm"&gt;xflogm&lt;/A&gt; (be sure you read the reference page as well). Sorry, can't help much in writing help files -- I used a 3rd party tool (HelpScribble) to make one; there's free Help Workshop from Microsoft as well. See also green text related with CONTEXTID switch -- instead of writing a big SELECT CASE, you can automate the task by including resource.hm into help workshop project (cf. string table/select case approaches above). &lt;BR /&gt;&lt;BR /&gt;Jugoslav&lt;BR /&gt;---&lt;BR /&gt;Sigh, attachment won't stick again -- can someone fix that bug &lt;I&gt;please&lt;/I&gt;? It behaves according to Murphy's Law -- whenever you announce the attachment, "Attach files and post message" button dies. Luckily, I got into habit of making a backup of the text ;-)</description>
      <pubDate>Tue, 15 Apr 2003 15:42:15 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/tool-tips-on-buttons/m-p/810516#M42440</guid>
      <dc:creator>Jugoslav_Dujic</dc:creator>
      <dc:date>2003-04-15T15:42:15Z</dc:date>
    </item>
    <item>
      <title>Re: tool tips on buttons ?</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/tool-tips-on-buttons/m-p/810517#M42441</link>
      <description>...here it is</description>
      <pubDate>Tue, 15 Apr 2003 16:00:08 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/tool-tips-on-buttons/m-p/810517#M42441</guid>
      <dc:creator>Jugoslav_Dujic</dc:creator>
      <dc:date>2003-04-15T16:00:08Z</dc:date>
    </item>
    <item>
      <title>Re: tool tips on buttons ?</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/tool-tips-on-buttons/m-p/810518#M42442</link>
      <description>Thank you very much for your reply. I actually tried to attach tool tips in a dialog, but I appreciate your suggestion and provided "context help" via F1-key and use tooltip from help file using the Workshop from Microsoft. There still arises one problem: I can't get consecutive help for Static Controls, even though with "notify", what enables text writing. I tried to manipulae XFLOGM.f90, because callbacksize is set to 1 for the class = CLS_STATIC but without success. Can you help me in this point? Thanks again.&lt;BR /&gt;W.Presser</description>
      <pubDate>Tue, 06 May 2003 14:59:51 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/tool-tips-on-buttons/m-p/810518#M42442</guid>
      <dc:creator>presser</dc:creator>
      <dc:date>2003-05-06T14:59:51Z</dc:date>
    </item>
    <item>
      <title>Re: tool tips on buttons ?</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/tool-tips-on-buttons/m-p/810519#M42443</link>
      <description>Wolfgang, I see that popup help for static controls works in my DialogTest sample. However, I don't think it can be invoked via F1 key -- it requires that the control has focus, and AFAIK static controls cannot have focus. It does work when "context help" button is used from dialog caption and the control is clicked. Also, I think the static control must have an ID other than IDC_STATIC.&lt;BR /&gt;&lt;BR /&gt;Jugoslav</description>
      <pubDate>Tue, 06 May 2003 15:16:58 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/tool-tips-on-buttons/m-p/810519#M42443</guid>
      <dc:creator>Jugoslav_Dujic</dc:creator>
      <dc:date>2003-05-06T15:16:58Z</dc:date>
    </item>
    <item>
      <title>Re: tool tips on buttons ?</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/tool-tips-on-buttons/m-p/810520#M42444</link>
      <description>I seem to recall posting this in reply to a similar query within the last 2 weeks or so, but here it is again.</description>
      <pubDate>Tue, 06 May 2003 22:40:20 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/tool-tips-on-buttons/m-p/810520#M42444</guid>
      <dc:creator>pcurtis</dc:creator>
      <dc:date>2003-05-06T22:40:20Z</dc:date>
    </item>
  </channel>
</rss>

