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.com 2009-12-04T11:09:13Z http://stackoverflow.com/feeds/question/942058 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/942058/how-to-get-the-process-id-of-the-current-excel-throught-vba-without-relying-on 2 How to get the process ID of the current Excel, throught VBA, without relying on finding the window by the caption? Jason 2009-06-02T21:45:17Z 2009-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#942087 8 Answer 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 Sellers 2009-06-02T21:52:14Z 2009-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&amp;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#1410378 0 Answer by ashokkumar for How to get the process ID of the current Excel, throught VBA, without relying on finding the window by the caption? ashokkumar 2009-09-11T11:34:23Z 2009-09-11T11:34:23Z <p>thanks very much Its helped me in time..</p>