<?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: Run console application minimized in Software Archive</title>
    <link>https://community.intel.com/t5/Software-Archive/Run-console-application-minimized/m-p/932095#M15085</link>
    <description>Testing ... &lt;BR /&gt;Is the problem because I'm putting a &lt;A href="http://www.compaq.com/fortran" target="_blank"&gt;link&lt;/A&gt;?</description>
    <pubDate>Thu, 14 Dec 2000 09:07:59 GMT</pubDate>
    <dc:creator>Intel_C_Intel</dc:creator>
    <dc:date>2000-12-14T09:07:59Z</dc:date>
    <item>
      <title>Run console application minimized</title>
      <link>https://community.intel.com/t5/Software-Archive/Run-console-application-minimized/m-p/932092#M15082</link>
      <description>Hi! &lt;BR /&gt; &lt;BR /&gt;Can anyone enlighten a poor, stupid soul how to make a Fortan executable (console application) run as a minimized icon in the taskbar? &lt;BR /&gt; &lt;BR /&gt;Thanks, &lt;BR /&gt; &lt;BR /&gt;Olof</description>
      <pubDate>Wed, 13 Dec 2000 15:05:52 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Run-console-application-minimized/m-p/932092#M15082</guid>
      <dc:creator>Intel_C_Intel</dc:creator>
      <dc:date>2000-12-13T15:05:52Z</dc:date>
    </item>
    <item>
      <title>Re: Run console application minimized</title>
      <link>https://community.intel.com/t5/Software-Archive/Run-console-application-minimized/m-p/932093#M15083</link>
      <description>Well, the simplest way to do it is from "outside". Simply, in the "Program" tab of "Properties" dialog for the shortcut to the app, set "Run Minimized". &lt;BR /&gt; &lt;BR /&gt;If the application is started by another application, you could run it minimized using WinExec (in another application's code): &lt;BR /&gt; &lt;BR /&gt;&lt;PRE&gt; 
USE DFWIN 
... 
iSt=WinExec("MyConsole.exe"C,SW_SHOWMINIMIZED) 
... 
&lt;/PRE&gt; &lt;BR /&gt; &lt;BR /&gt;Finally, if it is a must to minimize it from within the application itself, &lt;BR /&gt;you could try something like this: &lt;BR /&gt; &lt;BR /&gt;&lt;PRE&gt; 
SUBROUTINE MinimizeMyApp() 
 
USE DFWIN 
INTEGER hModule, hWindow 
CHARACTER*256:: sExeName 
 
hModule=GetModuleHandle(NULL) 
iSt=GetModuleFileName(hModule, sExeName, 256) 
hWindow=FindWindow(NULL, sExeName) 
iSt=ShowWindow(hWindow, SW_SHOWMINIMIZED) 
iSt=ShowWindow(hWindow, SW_SHOWMINIMIZED) 
 
END SUBROUTINE 
&lt;/PRE&gt; &lt;BR /&gt; &lt;BR /&gt;(This works on Win2k, where title of Console window displays the &lt;BR /&gt;full path of the .exe file. If this is different on Win9x/NT4, you could &lt;BR /&gt;extract filename from full path: &lt;BR /&gt; &lt;BR /&gt;sExeName=sExeName(SCAN(sExeName,'',.TRUE) : ) &lt;BR /&gt; &lt;BR /&gt;HTH &lt;BR /&gt; &lt;BR /&gt;Jugoslav</description>
      <pubDate>Wed, 13 Dec 2000 22:31:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Run-console-application-minimized/m-p/932093#M15083</guid>
      <dc:creator>Jugoslav_Dujic</dc:creator>
      <dc:date>2000-12-13T22:31:21Z</dc:date>
    </item>
    <item>
      <title>Re: Run console application minimized</title>
      <link>https://community.intel.com/t5/Software-Archive/Run-console-application-minimized/m-p/932094#M15084</link>
      <description>Test.... &lt;BR /&gt;Ughhh.  Why me, why, why, why, why, why,</description>
      <pubDate>Thu, 14 Dec 2000 09:01:16 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Run-console-application-minimized/m-p/932094#M15084</guid>
      <dc:creator>Intel_C_Intel</dc:creator>
      <dc:date>2000-12-14T09:01:16Z</dc:date>
    </item>
    <item>
      <title>Re: Run console application minimized</title>
      <link>https://community.intel.com/t5/Software-Archive/Run-console-application-minimized/m-p/932095#M15085</link>
      <description>Testing ... &lt;BR /&gt;Is the problem because I'm putting a &lt;A href="http://www.compaq.com/fortran" target="_blank"&gt;link&lt;/A&gt;?</description>
      <pubDate>Thu, 14 Dec 2000 09:07:59 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Run-console-application-minimized/m-p/932095#M15085</guid>
      <dc:creator>Intel_C_Intel</dc:creator>
      <dc:date>2000-12-14T09:07:59Z</dc:date>
    </item>
    <item>
      <title>Re: Run console application minimized</title>
      <link>https://community.intel.com/t5/Software-Archive/Run-console-application-minimized/m-p/932096#M15086</link>
      <description>Testing ... &lt;BR /&gt; &lt;BR /&gt;Is the problem because I'm putting an &lt;A href="http://www.yahoo.com" target="_blank"&gt;external link&lt;/A&gt;? &lt;BR /&gt; &lt;BR /&gt;- ??</description>
      <pubDate>Thu, 14 Dec 2000 09:33:09 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Run-console-application-minimized/m-p/932096#M15086</guid>
      <dc:creator>Intel_C_Intel</dc:creator>
      <dc:date>2000-12-14T09:33:09Z</dc:date>
    </item>
    <item>
      <title>Re: Run console application minimized</title>
      <link>https://community.intel.com/t5/Software-Archive/Run-console-application-minimized/m-p/932097#M15087</link>
      <description>Ok. Putting an HTML link to the URL below in my message posting is enough to make it not show up. Why, why, why, why, .... It worked before. I promised myself I wouldn't comment any further on the message board, but it's getting kinda hard to refrain.  &lt;BR /&gt; &lt;BR /&gt;[Later]  &lt;BR /&gt; &lt;BR /&gt;After another failed posting, it seems you don't have to use anchor tags any more to post an HTML link. Is this the issue causing the problems. Does the forum have a Users Guide? Ughh.  &lt;BR /&gt; &lt;BR /&gt;[Later still] &lt;BR /&gt;No, it's not just the anchor tags because this message still won't post.  #$@#$#@  &lt;BR /&gt; &lt;BR /&gt;[Much later] &lt;BR /&gt;I removed the #)(*$*# damn deja URL even as just text because this message won't post with it. &lt;BR /&gt; &lt;BR /&gt;-jt</description>
      <pubDate>Thu, 14 Dec 2000 09:54:57 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Run-console-application-minimized/m-p/932097#M15087</guid>
      <dc:creator>Intel_C_Intel</dc:creator>
      <dc:date>2000-12-14T09:54:57Z</dc:date>
    </item>
    <item>
      <title>Re: Run console application minimized</title>
      <link>https://community.intel.com/t5/Software-Archive/Run-console-application-minimized/m-p/932098#M15088</link>
      <description>Hi, Jugoslav! &lt;BR /&gt; &lt;BR /&gt;Thanks for the reply. The executable will be run from a Visual Basic application. Any comments other than the all the good ones you've already posted :)? &lt;BR /&gt; &lt;BR /&gt;Olof</description>
      <pubDate>Thu, 14 Dec 2000 12:39:26 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Run-console-application-minimized/m-p/932098#M15088</guid>
      <dc:creator>Intel_C_Intel</dc:creator>
      <dc:date>2000-12-14T12:39:26Z</dc:date>
    </item>
    <item>
      <title>Re: Run console application minimized</title>
      <link>https://community.intel.com/t5/Software-Archive/Run-console-application-minimized/m-p/932099#M15089</link>
      <description>The gist of what I've been trying to post is that if your ultimate goal is to launch the console app with no window at all, this can be done easily using CreateProcess.   &lt;BR /&gt; &lt;BR /&gt;Steve L posted a CVF example recently on c.l.f.  (feel free to search c.l.f. on deja for CreateProcess if you're interested). &lt;BR /&gt; &lt;BR /&gt;If you want to call CreateProcess from VB, there are a number of MS KB articles you'd find useful.  (Q129796  Q129797).  To hide the console window, you'd want to do the equivalent of  &lt;BR /&gt; &lt;BR /&gt;StartupInfo.dwFlags = STARTF_USESHOWWINDOW &lt;BR /&gt;StartupInfo.wShowWindow = SW_HIDE &lt;BR /&gt; &lt;BR /&gt;hth, &lt;BR /&gt;John &lt;BR /&gt; &lt;BR /&gt;PS - Sorry for the lack of links.  It's certainly not for a lack of trying. :-/</description>
      <pubDate>Thu, 14 Dec 2000 15:13:31 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Run-console-application-minimized/m-p/932099#M15089</guid>
      <dc:creator>Intel_C_Intel</dc:creator>
      <dc:date>2000-12-14T15:13:31Z</dc:date>
    </item>
    <item>
      <title>Re: Run console application minimized</title>
      <link>https://community.intel.com/t5/Software-Archive/Run-console-application-minimized/m-p/932100#M15090</link>
      <description>John, &lt;BR /&gt; &lt;BR /&gt;I forgot to thank you for the assistance in few previous posts  &lt;BR /&gt;(the messages from the old Forum). You're trully a saint - not &lt;BR /&gt;only for the helpfulness, but for the martyrdom you pass coping &lt;BR /&gt;with the Compaq Message Forum beast. Well, finally, what one &lt;BR /&gt;&lt;I&gt;shouldn't do&lt;/I&gt; when posting a message here?  &lt;BR /&gt;(It's potentially stupid question - since if you write what shouldn't &lt;BR /&gt;be done it would not occur here :-)) &lt;BR /&gt; &lt;BR /&gt;Olof, &lt;BR /&gt; &lt;BR /&gt;Just one warning: be careful when executing an exe from within &lt;BR /&gt;another app. It depends on what you want exe to do, but my experience &lt;BR /&gt;is that exes doing the calculations are dangerous in the following &lt;BR /&gt;sense:  &lt;BR /&gt; &lt;BR /&gt;You know, Windows is multi-tasking OS. That means, if you want to &lt;BR /&gt;execute an .exe, it would be run in a separate process, i.e. in parallel &lt;BR /&gt;with the calling process. So, the calling app will not wait for the exe to &lt;BR /&gt;finish and then pick up the results; it would simply go further its way. &lt;BR /&gt;If that's the situation (call an exe and then display the results written &lt;BR /&gt;in some files), you'd better convert the exe into a DLL and then call &lt;BR /&gt;the DLL from VB. Also, you can apply the trick with pausing the VB &lt;BR /&gt;caller for the time sufficient that the exe finishes, or, clearer, apply  &lt;BR /&gt;something like the following (you'll have to translate it into VB): &lt;BR /&gt; &lt;BR /&gt;&lt;PRE&gt; 
SUBROUTINE ExecAppAndWait(szCmdLine) 
 
USE DWIN 
 
IMPLICIT LOGICAL(b) 
IMPLICIT INTEGER(h-n) 
 
TYPE(T_STARTUPINFO)::         StdInfo 
TYPE(T_PROCESS_INFORMATION):: ProcInfo 
 
CHARACTER*(*)::         szCmdLine 
 
StdInfo%cb=64 
StdInfo%lpReserved=NULL  
StdInfo%lpDesktop=0  
StdInfo%lpTitle=NULL  
StdInfo%dwX=0  
StdInfo%dwY=0  
StdInfo%dwXSize=0  
StdInfo%dwYSize=0  
StdInfo%dwXCountChars=0  
StdInfo%dwYCountChars=0  
StdInfo%dwFillAttribute=0  
StdInfo%dwFlags=STARTF_USESHOWWINDOW 
StdInfo%wShowWindow=SW_HIDE 
StdInfo%cbReserved2=0  
StdInfo%lpReserved2=NULL  
StdInfo%hStdInput=0  
StdInfo%hStdOutput=0  
StdInfo%hStdError=0  
 
bProcess=CreateProcess(NULL_CHARACTER,szCmdLine,NULL_SECURITY_ATTRIBUTES,     &amp;amp; 
                       NULL_SECURITY_ATTRIBUTES,.FALSE.,                      &amp;amp; 
                       NORMAL_PRIORITY_CLASS,NULL,TRIM(sBazaDir)//CHAR(0),    &amp;amp; 
                       StdInfo,ProcInfo) 
hProcess=ProcInfo.hProcess 
 
iExitCode=STILL_ACTIVE 
DO WHILE(iExitCode.EQ.STILL_ACTIVE) 
      bDummy=GetExitCodeProcess(hProcess,LOC(iExitCode)) 
END DO 
 
END SUBROUTINE ExecAppAndWait 
&lt;/PRE&gt; &lt;BR /&gt; &lt;BR /&gt;Regards, &lt;BR /&gt; &lt;BR /&gt;Jugoslav</description>
      <pubDate>Thu, 14 Dec 2000 22:05:48 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Run-console-application-minimized/m-p/932100#M15090</guid>
      <dc:creator>Jugoslav_Dujic</dc:creator>
      <dc:date>2000-12-14T22:05:48Z</dc:date>
    </item>
    <item>
      <title>Re: Run console application minimized</title>
      <link>https://community.intel.com/t5/Software-Archive/Run-console-application-minimized/m-p/932101#M15091</link>
      <description>&lt;A href="http://support.microsoft.com/support/kb/articles/Q129/7/96.asp"&gt;&lt;FONT size="2"&gt;Here&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size="2"&gt; is an elegant way to call an EXE from VB and wait for the end of execution. &lt;BR /&gt; &lt;BR /&gt;Regards, &lt;BR /&gt;Sabalan.&lt;/FONT&gt;</description>
      <pubDate>Thu, 14 Dec 2000 23:38:55 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Run-console-application-minimized/m-p/932101#M15091</guid>
      <dc:creator>sabalan</dc:creator>
      <dc:date>2000-12-14T23:38:55Z</dc:date>
    </item>
    <item>
      <title>Re: Run console application minimized</title>
      <link>https://community.intel.com/t5/Software-Archive/Run-console-application-minimized/m-p/932102#M15092</link>
      <description>If your ultimate goal is to start a console app programmatically without displaying the console window, you can do this easily using CreateProcess.  Steve L. posted an example on c.l.f. not too long ago.  You can see it on deja.com at, &lt;A href="http://x69.deja.com/getdoc.xp?AN=688011871" target="_blank"&gt;http://x69.deja.com/getdoc.xp?AN=688011871&lt;/A&gt;. &lt;BR /&gt; &lt;BR /&gt;hth, &lt;BR /&gt;John</description>
      <pubDate>Tue, 19 Dec 2000 04:37:43 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Run-console-application-minimized/m-p/932102#M15092</guid>
      <dc:creator>Intel_C_Intel</dc:creator>
      <dc:date>2000-12-19T04:37:43Z</dc:date>
    </item>
    <item>
      <title>Re: Run console application minimized</title>
      <link>https://community.intel.com/t5/Software-Archive/Run-console-application-minimized/m-p/932103#M15093</link>
      <description>&lt;PRE&gt;  &lt;BR /&gt;use dfwin &lt;BR /&gt;implicit none &lt;BR /&gt;type (T_STARTUPINFO) :: StartupInfo &lt;BR /&gt;type (T_PROCESS_INFORMATION) :: ProcessInfo &lt;BR /&gt;integer ret &lt;BR /&gt;  &lt;BR /&gt;StartupInfo = T_STARTUPINFO( &amp;amp; &lt;BR /&gt;  SIZEOF(StartupInfo),0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0) &lt;BR /&gt;  &lt;BR /&gt;! Specify that newly created window is to start hidden &lt;BR /&gt;StartupInfo%dwFlags = STARTF_USESHOWWINDOW &lt;BR /&gt;StartupInfo%wShowWindow = SW_HIDE &lt;BR /&gt;  &lt;BR /&gt;ret = CreateProcess (NULL_CHARACTER,  &amp;amp; ! Application Name &lt;BR /&gt;  "SUBDIRFEM.EXE"C, &amp;amp;  ! Command line &lt;BR /&gt;  NULL_SECURITY_ATTRIBUTES, &amp;amp; &lt;BR /&gt;  NULL_SECURITY_ATTRIBUTES, &amp;amp; &lt;BR /&gt;  FALSE, &amp;amp; ! InheritHandles &lt;BR /&gt;  CREATE_NEW_CONSOLE, &amp;amp;    ! CreationFlags &lt;BR /&gt;  NULL, &amp;amp; ! Environment variables &lt;BR /&gt;  "SUBDIR"C, &amp;amp; ! Current directory &lt;BR /&gt;  StartupInfo, &amp;amp; &lt;BR /&gt;  ProcessInfo) &lt;BR /&gt;end&lt;PRE&gt; &lt;BR /&gt;  &lt;BR /&gt;Send Visual Fortran support requests to vf-support@compaq.com &lt;BR /&gt;  &lt;BR /&gt;Steve Lionel (mailto:Steve.Lionel@compaq.com) &lt;BR /&gt;Fortran Engineering &lt;BR /&gt;Compaq Computer Corporation, Nashua NH&lt;/PRE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 19 Dec 2000 04:38:56 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Run-console-application-minimized/m-p/932103#M15093</guid>
      <dc:creator>Intel_C_Intel</dc:creator>
      <dc:date>2000-12-19T04:38:56Z</dc:date>
    </item>
    <item>
      <title>Re: Run console application minimized</title>
      <link>https://community.intel.com/t5/Software-Archive/Run-console-application-minimized/m-p/932104#M15094</link>
      <description>I'll try this once more. &lt;BR /&gt; &lt;BR /&gt;I was trying to say, if your ultimate goal is to launch the console app with no window at all, this can be done easily using CreateProcess.  Steve L posted a CVF &lt;A href="http://x52.deja.com/getdoc.xp?AN=688011871" target="_blank"&gt;example&lt;/A&gt; recently on c.l.f.  &lt;BR /&gt; &lt;BR /&gt;But if you want to call CreateProcess from VB instead, that example would be of minor help. &lt;BR /&gt; &lt;BR /&gt;If you're interested in this option, there are a number of MS KB articles you'd find useful.  (&lt;A href="http://support.microsoft.com/support/kb/articles/Q129/7/96.asp" target="_blank"&gt;Q129796&lt;/A&gt;  &lt;A href="http://support.microsoft.com/support/kb/articles/Q129/7/97.asp" target="_blank"&gt;Q129797&lt;/A&gt;).  To hide the console window, you'd want to do the equivalent of  &lt;BR /&gt; &lt;BR /&gt;StartupInfo.dwFlags = STARTF_USESHOWWINDOW &lt;BR /&gt;StartupInfo.wShowWindow = SW_HIDE &lt;BR /&gt; &lt;BR /&gt;hth, &lt;BR /&gt;John</description>
      <pubDate>Tue, 19 Dec 2000 04:39:44 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Run-console-application-minimized/m-p/932104#M15094</guid>
      <dc:creator>Intel_C_Intel</dc:creator>
      <dc:date>2000-12-19T04:39:44Z</dc:date>
    </item>
    <item>
      <title>Re: Run console application minimized</title>
      <link>https://community.intel.com/t5/Software-Archive/Run-console-application-minimized/m-p/932105#M15095</link>
      <description>I discovered what the problem was with John's posting - it contained strings of digits which were interpreted as possible phone numbers, and for reasons unknown to me, the software is set up to cause messages with possible phone numbers to be held for review by a moderator.. but nothing ever told me such messages were there.&lt;BR /&gt;&lt;BR /&gt;I THINK I have figured out a way to turn off the phone number filter for the Fortran forum - we shall see.  Meanwhile I'll check the moderation queue every once in a while.&lt;BR /&gt;&lt;BR /&gt;Learn something new every day...&lt;BR /&gt;&lt;BR /&gt;Steve</description>
      <pubDate>Tue, 19 Dec 2000 04:48:44 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Run-console-application-minimized/m-p/932105#M15095</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2000-12-19T04:48:44Z</dc:date>
    </item>
    <item>
      <title>Re: Run console application minimized</title>
      <link>https://community.intel.com/t5/Software-Archive/Run-console-application-minimized/m-p/932106#M15096</link>
      <description>Hi Steve, &lt;BR /&gt; &lt;BR /&gt;Thanks.  I don't suppose there's any way for a user to cancel/delete their own posting, is there?   (I believe it was possible in the old forum)  If not, feel free to prune my posts in this thread down to one. &lt;BR /&gt; &lt;BR /&gt;-John</description>
      <pubDate>Tue, 19 Dec 2000 06:27:28 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Run-console-application-minimized/m-p/932106#M15096</guid>
      <dc:creator>Intel_C_Intel</dc:creator>
      <dc:date>2000-12-19T06:27:28Z</dc:date>
    </item>
    <item>
      <title>Re: Run console application minimized</title>
      <link>https://community.intel.com/t5/Software-Archive/Run-console-application-minimized/m-p/932107#M15097</link>
      <description>Steve, &lt;BR /&gt; &lt;BR /&gt;I seem to have done something extraordinary to my postings to the invisible controls thread, that became visible after moderation.  Any idea what's causing this? &lt;BR /&gt; &lt;BR /&gt;Walter Kramer</description>
      <pubDate>Tue, 19 Dec 2000 06:29:01 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Run-console-application-minimized/m-p/932107#M15097</guid>
      <dc:creator>wkramer</dc:creator>
      <dc:date>2000-12-19T06:29:01Z</dc:date>
    </item>
    <item>
      <title>Re: Run console application minimized</title>
      <link>https://community.intel.com/t5/Software-Archive/Run-console-application-minimized/m-p/932108#M15098</link>
      <description>John - I'll ask about deleting your own postings - you can ask me to do it if you need something deleted (or edited).&lt;BR /&gt;&lt;BR /&gt;Walter, I discovered that many postings were being held for moderator approval - when I approved them, they appeared.&lt;BR /&gt;&lt;BR /&gt;Steve</description>
      <pubDate>Wed, 20 Dec 2000 01:31:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Run-console-application-minimized/m-p/932108#M15098</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2000-12-20T01:31:00Z</dc:date>
    </item>
    <item>
      <title>Re: Run console application minimized</title>
      <link>https://community.intel.com/t5/Software-Archive/Run-console-application-minimized/m-p/932109#M15099</link>
      <description>I discovered that you need to add the following lines to the end of my example code for running a program minimized:&lt;BR /&gt;&lt;BR /&gt;ret = CloseHandle( ProcessInfo.hThread )&lt;BR /&gt;&lt;BR /&gt;ret = CloseHandle( ProcessInfo.hProcess )&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;otherwise there might be a resource leak or the created process might not go away when done.&lt;BR /&gt;&lt;BR /&gt;Steve</description>
      <pubDate>Wed, 20 Dec 2000 02:01:35 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Run-console-application-minimized/m-p/932109#M15099</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2000-12-20T02:01:35Z</dc:date>
    </item>
  </channel>
</rss>

