System.UnauthorizedAccessException from Serial Port in VB.NET - Stack Overflow most recent 30 from stackoverflow.com2009-12-12T02:19:22Zhttp://stackoverflow.com/feeds/question/924070http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/924070/system-unauthorizedaccessexception-from-serial-port-in-vb-net0System.UnauthorizedAccessException from Serial Port in VB.NETpsuhas2009-05-29T01:54:39Z2009-05-29T03:04:57Z
<p>Hi,</p>
<p>I am using VB.NET 2008 Express Edition to access Serial Port which is a USB to Serial port. Since this is removable, the app user can disconnect it at any time in app. I am getting an unhandled exception when I remove the USB Serial Port.</p>
<p>After research, it seems like a known problem in .NET (even in 3.5) </p>
<p>I am looking for some solution to get this done. I have already tried the app.config solution that was suggested and it does not work</p>
<p>Here is the link for issue
<a href="http://connect.microsoft.com/VisualStudio/feedback/Validation.aspx?FeedbackID=140018" rel="nofollow">http://connect.microsoft.com/VisualStudio/feedback/Validation.aspx?FeedbackID=140018</a></p>
<p>Any help is appreciated, and thanks in advance</p>
<p>Suhas</p>
http://stackoverflow.com/questions/924070/system-unauthorizedaccessexception-from-serial-port-in-vb-net/924228#9242280Answer by R Ubben for System.UnauthorizedAccessException from Serial Port in VB.NETR Ubben2009-05-29T03:04:57Z2009-05-29T03:04:57Z<p>There were a number of serial port libraries written for .Net 1.1, since it did not provide built-in classes for ports. <a href="http://www.codeproject.com/KB/dotnet/DotNetComPorts.aspx" rel="nofollow">Here</a> is one example; there are others, open source and commercial.</p>
<p>You do not have to use the framework; if you use something like this, you will have access to the code right down to Win32. You might stand a better chance of catching the exception that way. </p>