How to get the process ID of the current Excel, throught VBA, without relying on finding the window by the caption? - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T11:09:13Zhttp://stackoverflow.com/feeds/question/942058http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/942058/how-to-get-the-process-id-of-the-current-excel-throught-vba-without-relying-on2How to get the process ID of the current Excel, throught VBA, without relying on finding the window by the caption?Jason2009-06-02T21:45:17Z2009-09-11T11:34:23Z
<p>How can I get the process ID of the current Excel instance, that my VBA code is running in, without asking for it by the name in the caption... which causes a problem when I have two or more Excel instances with the same caption?</p>
http://stackoverflow.com/questions/942058/how-to-get-the-process-id-of-the-current-excel-throught-vba-without-relying-on/942087#9420878Answer by Mitchel Sellers for How to get the process ID of the current Excel, throught VBA, without relying on finding the window by the caption?Mitchel Sellers2009-06-02T21:52:14Z2009-06-02T22:15:40Z<p>You can use this method to get the current process id.</p>
<pre><code>Declare Function GetCurrentProcessId Lib "kernel32" () As Long
</code></pre>
<p><a href="http://www.informit.com/articles/article.aspx?p=366892&seqNum=3" rel="nofollow">This page</a> has a good overview of exactly how you can do it in various versions of excel.</p>
http://stackoverflow.com/questions/942058/how-to-get-the-process-id-of-the-current-excel-throught-vba-without-relying-on/1410378#14103780Answer by ashokkumar for How to get the process ID of the current Excel, throught VBA, without relying on finding the window by the caption?ashokkumar2009-09-11T11:34:23Z2009-09-11T11:34:23Z<p>thanks very much Its helped me in time..</p>