<?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: getting a window handle based upon its title in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/getting-a-window-handle-based-upon-its-title/m-p/859050#M68438</link>
    <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="margin-top: 5px; width: 100%;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/391180"&gt;Jugoslav Dujic&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;
&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
&lt;P&gt;Quote, "If &lt;EM&gt;lpClassName&lt;/EM&gt; is NULL, it finds any window whose title matches the &lt;EM&gt;lpWindowName&lt;/EM&gt; parameter. ".&lt;/P&gt;
&lt;P&gt;Jugoslav&lt;/P&gt;
&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 29 Oct 2008 11:36:32 GMT</pubDate>
    <dc:creator>bearoflittlebrain_ol</dc:creator>
    <dc:date>2008-10-29T11:36:32Z</dc:date>
    <item>
      <title>getting a window handle based upon its title</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/getting-a-window-handle-based-upon-its-title/m-p/859044#M68432</link>
      <description>&lt;P&gt;If I know the title of a win32 application window, could someone help with the function or do while loop where you can get the window handle ..&lt;/P&gt;
&lt;P&gt;I'm trying to send a message from oneopengl application to another ...&lt;/P&gt;</description>
      <pubDate>Mon, 27 Oct 2008 16:45:37 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/getting-a-window-handle-based-upon-its-title/m-p/859044#M68432</guid>
      <dc:creator>chunky_lover_23</dc:creator>
      <dc:date>2008-10-27T16:45:37Z</dc:date>
    </item>
    <item>
      <title>Re: getting a window handle based upon its title</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/getting-a-window-handle-based-upon-its-title/m-p/859045#M68433</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="margin-top: 5px; width: 100%;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/231549"&gt;chunky lover 23&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;
&lt;P&gt;If I know the title of a win32 application window, could someone help with the function or do while loop where you can get the window handle ..&lt;/P&gt;
&lt;P&gt;I'm trying to send a message from oneopengl application to another ...&lt;/P&gt;
&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;This is not as easy as it might seem. it requires use of EnumDesktopWindows(), and a teston all resulting windows for the desired title. I have attached a version that seems to work.&lt;/P&gt;
&lt;P&gt;Greg&lt;/P&gt;</description>
      <pubDate>Tue, 28 Oct 2008 03:40:50 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/getting-a-window-handle-based-upon-its-title/m-p/859045#M68433</guid>
      <dc:creator>gregs_cvf</dc:creator>
      <dc:date>2008-10-28T03:40:50Z</dc:date>
    </item>
    <item>
      <title>Re: getting a window handle based upon its title</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/getting-a-window-handle-based-upon-its-title/m-p/859046#M68434</link>
      <description>&lt;P&gt;Whoops, attachment follows&lt;/P&gt;
&lt;P&gt;Greg&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;!GetWinHandle--Gets the handle of an active window with a matching title&lt;BR /&gt;!&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;See also GetForegroundWindow() which may perform this same function!!!&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&lt;BR /&gt;!This Function loops through all active windows until a matching title is found.&lt;BR /&gt;!Then it returns the handle of the window, or zero if no matching window title found.&lt;BR /&gt;!If more than one matching window is found it returns the handle of the first.or last&lt;BR /&gt;!matching window depending on optional argument Last. It also optionally may return&lt;BR /&gt;!the number of matching windows found.&lt;BR /&gt;!&lt;BR /&gt;!FUNCTION GetWinHandle(wTitle, Last, nMatches)&lt;BR /&gt;!***INPUT ARGS&lt;BR /&gt;!wTitle[C*(*)]=Window title to be searched for&lt;BR /&gt;!wTitle is case sensitive&lt;BR /&gt;!Comparison is only done out to LEN(wTitle) or out to Null character&lt;BR /&gt;!wTitle may or may not be a C-String.&lt;BR /&gt;!Last[L4][OPTIONAL]=If present, and .TRUE. then the last matching window is returned,&lt;BR /&gt;!Otherwise, the first matching window is returned&lt;BR /&gt;!***OUTPUT ARGS&lt;BR /&gt;!nMatches[I4][OPTIONAL]=Number of windows found with a matching title&lt;BR /&gt;!FullTitle[C*(*)][OPTIONAL]=Full title of matching window. May share storage with wTitle.&lt;BR /&gt;!***RETURNED FUNCTIONAL VALUE&lt;BR /&gt;!WinHandle[I4]=The handle of last window with a matching title if Last is&lt;BR /&gt;! present and is .TRUE. Otherwise it returns the handle of the first matching&lt;BR /&gt;! window title. =0 if no matching window titles are found&lt;/P&gt;
&lt;P&gt;MODULE GetWinHandleMod&lt;BR /&gt;USE DFWIN, ONLY: EnumDesktopWindows, GetWindowText&lt;BR /&gt;IMPLICIT NONE&lt;BR /&gt;PRIVATE&lt;BR /&gt;PUBLIC GetWinHandle&lt;BR /&gt;INTEGER wHWnd, nMatch, Len1&lt;BR /&gt;CHARACTER*256 uTitle, vTitle&lt;BR /&gt;LOGICAL Last1&lt;/P&gt;
&lt;P&gt;CONTAINS&lt;/P&gt;
&lt;P&gt;FUNCTION GetWinHandle(wTitle, Last, FullTitle, nMatches) RESULT(WinHandle)&lt;BR /&gt;INTEGER:: WinHandle&lt;BR /&gt;CHARACTER*(*), INTENT(IN):: wTitle&lt;BR /&gt;LOGICAL, OPTIONAL, INTENT(IN):: Last&lt;BR /&gt;CHARACTER*(*), OPTIONAL, INTENT(OUT):: FullTitle&lt;BR /&gt;INTEGER, OPTIONAL, INTENT(OUT):: nMatches&lt;BR /&gt;!&lt;BR /&gt;INTEGER iRet&lt;BR /&gt;wHWnd = 0&lt;BR /&gt;nMatch = 0&lt;BR /&gt;Last1 = .FALSE.&lt;BR /&gt;IF(PRESENT(LAST))Last1 = Last&lt;BR /&gt;Len1 = index(wTitle, CHAR(0)) - 1&lt;BR /&gt;if(Len1 .GT. 0) then&lt;BR /&gt;uTitle = wTitle(1 : Len1)&lt;BR /&gt;else&lt;BR /&gt;uTitle = wTitle&lt;BR /&gt;Len1 = LEN(wTitle)&lt;BR /&gt;end if&lt;BR /&gt;!Enumerate (loop) through all the top-level windows and link to EnumWindowsProc&lt;BR /&gt;iRet = EnumDesktopWindows(0, Loc(EnumWindowsProc), 0)&lt;BR /&gt;WinHandle =wHWnd&lt;BR /&gt;IF(Present(FullTitle)) FullTitle = vTitle&lt;BR /&gt;IF(Present(nMatches)) nMatches = nMatch&lt;BR /&gt;END FUNCTION GetWinHandle&lt;/P&gt;
&lt;P&gt;!EnumWindowsProc--Callback function to test if matching title is found&lt;BR /&gt;!This function is called iteratively for each active window by EnumDesktopWindows.&lt;BR /&gt;!The functional format is as required. The function returns 1 (TRUE) to continue&lt;BR /&gt;!the enumeration, 0 (FALSE) to stop.&lt;BR /&gt;INTEGER FUNCTION EnumWindowsProc(hWindow, lParam)&lt;BR /&gt;INTEGER, INTENT(IN) :: hWindow&lt;BR /&gt;INTEGER, INTENT(IN) :: lParam&lt;BR /&gt;!DEC$ ATTRIBUTES VALUE :: hWindow, lParam&lt;BR /&gt;!&lt;BR /&gt;CHARACTER(256) szTitle&lt;BR /&gt;integer iRet&lt;BR /&gt;EnumWindowsProc = 1&lt;BR /&gt;!Get the Windows Title bar text for this window&lt;BR /&gt;iRet = GetWindowText(hWindow, szTitle, Len(szTitle))&lt;BR /&gt;if (iret &amp;gt; 0) then&lt;BR /&gt;!write(*,*)' "' // sztitle(1:iRet) // '" ', len_trim(sztitle)&lt;BR /&gt;if (INDEX(szTitle(1 : iRet), uTitle(1 : Len1)) .EQ. 1) then&lt;BR /&gt;!Here if matching window found... set wHWnd and iterate nMatch&lt;BR /&gt;nMatch = nMatch + 1&lt;BR /&gt;if(Last1 .OR. nMatch .EQ. 1) then&lt;BR /&gt;wHWnd = hWindow&lt;BR /&gt;vTitle = szTitle(1 : iRet)&lt;BR /&gt;end if&lt;BR /&gt;!Use this to terminate enumeration&lt;BR /&gt;!EnumWindowsProc = 0&lt;BR /&gt;end if&lt;BR /&gt;endif&lt;BR /&gt;END FUNCTION EnumWindowsProc&lt;BR /&gt;END MODULE GetWinHandleMod&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Oct 2008 03:50:31 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/getting-a-window-handle-based-upon-its-title/m-p/859046#M68434</guid>
      <dc:creator>gregs_cvf</dc:creator>
      <dc:date>2008-10-28T03:50:31Z</dc:date>
    </item>
    <item>
      <title>Re: getting a window handle based upon its title</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/getting-a-window-handle-based-upon-its-title/m-p/859047#M68435</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="width: 100%; margin-top: 5px;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/280824"&gt;gregs_cvf&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;
&lt;P&gt;Whoops, attachment follows&lt;/P&gt;
&lt;P&gt;Greg&lt;/P&gt;
&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;Greg, that was helluva complicated. &lt;A href="http://msdn.microsoft.com/en-us/library/ms633499.aspx"&gt;FindWindow&lt;/A&gt; does the job in one step.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Oct 2008 12:05:55 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/getting-a-window-handle-based-upon-its-title/m-p/859047#M68435</guid>
      <dc:creator>Jugoslav_Dujic</dc:creator>
      <dc:date>2008-10-28T12:05:55Z</dc:date>
    </item>
    <item>
      <title>Re: getting a window handle based upon its title</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/getting-a-window-handle-based-upon-its-title/m-p/859048#M68436</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="margin-top: 5px; width: 100%;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/391180"&gt;Jugoslav Dujic&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;
&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
&lt;P&gt;Greg, that was helluva complicated. &lt;A href="http://msdn.microsoft.com/en-us/library/ms633499.aspx"&gt;FindWindow&lt;/A&gt; does the job in one step.&lt;/P&gt;
&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;Yes complicated, but I've never been able to figure out what the first arg of FindWindow is for common window types.&lt;/P&gt;
&lt;P&gt;Help says it must be the "class name or an atom that identifies the class-name string". This is somewhat foreign to me.&lt;/P&gt;
&lt;P&gt;Any suggestions?&lt;/P&gt;
&lt;P&gt;Greg&lt;/P&gt;</description>
      <pubDate>Tue, 28 Oct 2008 21:52:16 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/getting-a-window-handle-based-upon-its-title/m-p/859048#M68436</guid>
      <dc:creator>gregs_cvf</dc:creator>
      <dc:date>2008-10-28T21:52:16Z</dc:date>
    </item>
    <item>
      <title>Re: getting a window handle based upon its title</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/getting-a-window-handle-based-upon-its-title/m-p/859049#M68437</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="width: 100%; margin-top: 5px;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/280824"&gt;gregs_cvf&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;
&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
&lt;P&gt;Yes complicated, but I've never been able to figure out what the first arg of FindWindow is for common window types.&lt;/P&gt;
&lt;P&gt;Help says it must be the "class name or an atom that identifies the class-name string". This is somewhat foreign to me.&lt;/P&gt;
&lt;P&gt;Any suggestions?&lt;/P&gt;
&lt;P&gt;Greg&lt;/P&gt;
&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;Quote, "If &lt;EM&gt;lpClassName&lt;/EM&gt; is NULL, it finds any window whose title matches the &lt;EM&gt;lpWindowName&lt;/EM&gt; parameter. ".&lt;/P&gt;
&lt;P&gt;Jugoslav&lt;/P&gt;</description>
      <pubDate>Wed, 29 Oct 2008 08:46:33 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/getting-a-window-handle-based-upon-its-title/m-p/859049#M68437</guid>
      <dc:creator>Jugoslav_Dujic</dc:creator>
      <dc:date>2008-10-29T08:46:33Z</dc:date>
    </item>
    <item>
      <title>Re: getting a window handle based upon its title</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/getting-a-window-handle-based-upon-its-title/m-p/859050#M68438</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="margin-top: 5px; width: 100%;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/391180"&gt;Jugoslav Dujic&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;
&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
&lt;P&gt;Quote, "If &lt;EM&gt;lpClassName&lt;/EM&gt; is NULL, it finds any window whose title matches the &lt;EM&gt;lpWindowName&lt;/EM&gt; parameter. ".&lt;/P&gt;
&lt;P&gt;Jugoslav&lt;/P&gt;
&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Oct 2008 11:36:32 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/getting-a-window-handle-based-upon-its-title/m-p/859050#M68438</guid>
      <dc:creator>bearoflittlebrain_ol</dc:creator>
      <dc:date>2008-10-29T11:36:32Z</dc:date>
    </item>
    <item>
      <title>Re: getting a window handle based upon its title</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/getting-a-window-handle-based-upon-its-title/m-p/859051#M68439</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="margin-top: 5px; width: 100%;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/391180"&gt;Jugoslav Dujic&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;
&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
&lt;P&gt;Quote, "If &lt;EM&gt;lpClassName&lt;/EM&gt; is NULL, it finds any window whose title matches the &lt;EM&gt;lpWindowName&lt;/EM&gt; parameter. ".&lt;/P&gt;
&lt;P&gt;Jugoslav&lt;/P&gt;
&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;&lt;SPAN style="font-size: x-small;"&gt;Bother - hit the wrong button there! Jugoclav's quote is from the MSDN Library's online help, but not in the Help that came with my CVF6.6. The moral is to look online if stuck.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-size: x-small;"&gt;Bear&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Oct 2008 11:43:53 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/getting-a-window-handle-based-upon-its-title/m-p/859051#M68439</guid>
      <dc:creator>bearoflittlebrain_ol</dc:creator>
      <dc:date>2008-10-29T11:43:53Z</dc:date>
    </item>
    <item>
      <title>Re: getting a window handle based upon its title</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/getting-a-window-handle-based-upon-its-title/m-p/859052#M68440</link>
      <description>&lt;P&gt;Yes, FindWindow(NULL, ...) does indeed work. But be aware, the full exact window title must still be used.&lt;/P&gt;
&lt;P&gt;The EnumDesktopWindows loop maystill be of usewhen the full title is too cumbersome, or whenyou only have access to an abbreviated form of the window title.&lt;/P&gt;
&lt;P&gt;Greg&lt;/P&gt;</description>
      <pubDate>Wed, 29 Oct 2008 15:41:20 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/getting-a-window-handle-based-upon-its-title/m-p/859052#M68440</guid>
      <dc:creator>gregs_cvf</dc:creator>
      <dc:date>2008-10-29T15:41:20Z</dc:date>
    </item>
    <item>
      <title>Re: getting a window handle based upon its title</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/getting-a-window-handle-based-upon-its-title/m-p/859053#M68441</link>
      <description>&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
&lt;P&gt;&lt;SPAN style="font-size: x-small;"&gt;BTW, is a negative handle value a sign of failure in any cases?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-size: x-small;"&gt;Bear&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Oct 2008 19:07:50 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/getting-a-window-handle-based-upon-its-title/m-p/859053#M68441</guid>
      <dc:creator>bearoflittlebrain_ol</dc:creator>
      <dc:date>2008-10-29T19:07:50Z</dc:date>
    </item>
    <item>
      <title>Re: getting a window handle based upon its title</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/getting-a-window-handle-based-upon-its-title/m-p/859054#M68442</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="width: 100%; margin-top: 5px;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/344133"&gt;bearoflittlebrain&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;
&lt;P&gt;&lt;SPAN style="font-size: x-small;"&gt;BTW, is a negative handle value a sign of failure in any cases?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-size: x-small;"&gt;Bear&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;No. You shouldn't hold any presumption about handle value, other than that it's different from zero and INVALID_HANDLE_VALUE (=-1 if I recall correctly).&lt;/P&gt;</description>
      <pubDate>Thu, 30 Oct 2008 08:45:54 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/getting-a-window-handle-based-upon-its-title/m-p/859054#M68442</guid>
      <dc:creator>Jugoslav_Dujic</dc:creator>
      <dc:date>2008-10-30T08:45:54Z</dc:date>
    </item>
    <item>
      <title>Re: getting a window handle based upon its title</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/getting-a-window-handle-based-upon-its-title/m-p/859055#M68443</link>
      <description>&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
&lt;P&gt;&lt;SPAN style="font-size: small;"&gt;Jugoslav,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-size: small;"&gt;Many thanks - it's difficult to find in Help the answers to simple questions such as mine.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-size: small;"&gt;Bear of Little Brain&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Oct 2008 10:42:28 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/getting-a-window-handle-based-upon-its-title/m-p/859055#M68443</guid>
      <dc:creator>bearoflittlebrain_ol</dc:creator>
      <dc:date>2008-10-30T10:42:28Z</dc:date>
    </item>
  </channel>
</rss>

