<?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: There is no disk in the drive. Why? in ArcObjects SDK Questions</title>
    <link>https://community.esri.com/t5/arcobjects-sdk-questions/there-is-no-disk-in-the-drive-why/m-p/436916#M11827</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I know this is an old post, but I have just recently ran into this issue myself. I have developed a custom .Net Desktop Windows Form Application in VS 2010. The culprit for me was a Visual Basic PowerPack element I had added to my form. I was using a Rectangle Shape as a divider. Once I deleted this element I no longer had the error when I debugged my project. I used a label instead for my divider. This may not always be the case for everyone's project, but it solved my problem.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 21 Apr 2014 14:32:42 GMT</pubDate>
    <dc:creator>SueBreeden</dc:creator>
    <dc:date>2014-04-21T14:32:42Z</dc:date>
    <item>
      <title>There is no disk in the drive. Why?</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/there-is-no-disk-in-the-drive-why/m-p/436914#M11825</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I am just starting with ArcObjects SDK. Using C# in Visual Studio 2010. I've been looking at some of the examples and starting to play with putting my own together.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Something which has been plaguing me is the message:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; devenv.exe - No Disk&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; (x) There is no disk in the drive. Please insert a disk into drive D:.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; [Cancel]&amp;nbsp; [Try Again]&amp;nbsp; [Continue]&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This happens when I try to run or when I finish running an application. I'm 99% sure this is ArcObjects related because it doesn't happen with any of my other applications, and when I started a new blank (WinForms) application it was fine until I dropped an ArcGIS LicenseControl onto the form. Then the annoying message started appearing. I also get this with some of the provided samples. I'm assuming this something to do with my installation, any ideas?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;span class="lia-unicode-emoji" title=":anguished_face:"&gt;😧&lt;/span&gt; is my CD/DVD drive. C: and E: are real drives. I installed it from a virtual drive J:.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Using Process Monitor the file it is trying to look for on &lt;span class="lia-unicode-emoji" title=":anguished_face:"&gt;😧&lt;/span&gt; is "D:\ArcGIS\DotNet\ESRI.ArcGIS.System.pdb"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;(It looks first in the GAC, then &lt;span class="lia-unicode-emoji" title=":anguished_face:"&gt;😧&lt;/span&gt; then C:\Windows before giving up and not finding it.)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;A work around is to put a CD into the &lt;span class="lia-unicode-emoji" title=":anguished_face:"&gt;😧&lt;/span&gt; drive, but this is far from ideal.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Any ideas welcome. Thanks.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jan 2012 14:02:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/there-is-no-disk-in-the-drive-why/m-p/436914#M11825</guid>
      <dc:creator>BrianCryer</dc:creator>
      <dc:date>2012-01-25T14:02:42Z</dc:date>
    </item>
    <item>
      <title>Re: There is no disk in the drive. Why?</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/there-is-no-disk-in-the-drive-why/m-p/436915#M11826</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I have a work around, but not a complete resolution. The work around is to tell Visual Studio not to load the debug symbols for the corresponding dll.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So, given that in my minimal example it was looking for "D:\ArcGIS\DotNet\ESRI.ArcGIS.System.pdb" then in Visual Studio 2010:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; Tools &amp;gt; Options ...&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; Debugging &amp;gt; Symbols&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; I have "All modules unless excluded" selected, so click on "Specify excluded modules" and add "ESRI.ArcGIS.System.dll". Note its .dll as its the name of the library file which is entered here not the .pdb file.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;(Use ProcessMonitor to identify which .pdb its looking for.)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;For "real" projects I've now got over a dozen ESRI libraries excluded in this way. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I still don't know WHY its trying to load a .pdb file for these ESRI dlls from my CD/DVD drive, hence why this is a work around and not a resolution to the problem. Still, I hope it is useful to anyone else who hits the same problem.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jan 2012 07:52:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/there-is-no-disk-in-the-drive-why/m-p/436915#M11826</guid>
      <dc:creator>BrianCryer</dc:creator>
      <dc:date>2012-01-30T07:52:34Z</dc:date>
    </item>
    <item>
      <title>Re: There is no disk in the drive. Why?</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/there-is-no-disk-in-the-drive-why/m-p/436916#M11827</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I know this is an old post, but I have just recently ran into this issue myself. I have developed a custom .Net Desktop Windows Form Application in VS 2010. The culprit for me was a Visual Basic PowerPack element I had added to my form. I was using a Rectangle Shape as a divider. Once I deleted this element I no longer had the error when I debugged my project. I used a label instead for my divider. This may not always be the case for everyone's project, but it solved my problem.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Apr 2014 14:32:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/there-is-no-disk-in-the-drive-why/m-p/436916#M11827</guid>
      <dc:creator>SueBreeden</dc:creator>
      <dc:date>2014-04-21T14:32:42Z</dc:date>
    </item>
  </channel>
</rss>

