473,623 Members | 3,345 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

VB.NET Exception Error...

Hi All,

I am very new to VB.NET and creating small project to that will copy all files from a DVD to a folder in the Hard Drive. While doing the copy around 30% I got the following error:

************** Exception Text **************
System.IO.IOExc eption: Insufficient system resources exist to complete the requested service. at
System.IO.__Err or.WinIOError(I nt32 errorCode, String maybeFullPath) at
System.IO.Direc tory.InternalCr eateDirectory(S tring fullPath, String path, DirectorySecuri ty

dirSecurity) at
System.IO.Direc tory.CreateDire ctory(String path, DirectorySecuri ty directorySecuri ty) at
System.IO.Direc tory.CreateDire ctory(String path) at
Microsoft.Visua lBasic.FileIO.F ileSystem.CopyO rMoveFile(CopyO rMove operation, String sourceFileName,
String destinationFile Name, Boolean overwrite, UIOptionInterna l showUI, UICancelOption onUserCancel)at
Microsoft.Visua lBasic.MyServic es.FileSystemPr oxy.CopyFile(St ring sourceFileName, String destinationFile Name, UIOption showUI, UICancelOption onUserCancel) at
Transfer_DVD.Tr ansfer.ProcessF ileCopy() at
Transfer_DVD.Tr ansfer.btnCopyD VD_Click(Object sender, EventArgs e) at
System.Windows. Forms.Control.O nClick(EventArg s e) at
System.Windows. Forms.Button.On Click(EventArgs e) at
System.Windows. Forms.Button.On MouseUp(MouseEv entArgs mevent) at
System.Windows. Forms.Control.W mMouseUp(Messag e& m, MouseButtons button, Int32 clicks) at
System.Windows. Forms.Control.W ndProc(Message& m) at
System.Windows. Forms.ButtonBas e.WndProc(Messa ge& m) at
System.Windows. Forms.Button.Wn dProc(Message& m) at
System.Windows. Forms.Control.C ontrolNativeWin dow.OnMessage(M essage& m) at
System.Windows. Forms.Control.C ontrolNativeWin dow.WndProc(Mes sage& m) at
System.Windows. Forms.NativeWin dow.Callback(In tPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
Here is the code I am running to copy the files:
Me.ToolStripPro gressBar1.Visib le = True
Dim strFiles As ReadOnlyCollect ion(Of String) = My.Computer.Fil eSystem.GetFile s(Me.cboCDDrive s.Text, FileIO.SearchOp tion.SearchAllS ubDirectories, "*.*")
Me.ToolStripPro gressBar1.Maxim um = strFiles.Count
For nCount As Integer = 0 To strFiles.Count - 1
Dim strFoundFile As String = strFiles(nCount )
Me.ToolStripPro gressBar1.Value = nCount
My.Computer.Fil eSystem.CopyFil e(strFoundFile, strCopyToFolder & strFoundFile.Su bstring(3), FileIO.UIOption .OnlyErrorDialo gs, FileIO.UICancel Option.DoNothin g)
Next
Me.ToolStripPro gressBar1.Value = strFiles.Count

There is more code than this, but this is the part where the file copy is being done.

I would appreciate if anybody can help debug this to find out what is causing the exception to happened.

Thanks!

--
Edhy Rijo

Nov 20 '06 #1
0 1378

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
2334
by: Daniel Wilson | last post by:
I am having exception-handling and stability problems with .NET. I will have a block of managed code inside try...catch and will still get a generic ..NET exception box that will tell me which assemblies are loaded before shutting down. In one case, some of my DB-accessing code didn't handle a NULL value properly. But try...catch wouldn't catch the exception and keep going. I'd just get the error message and then it would shut the...
7
2699
by: Ekim | last post by:
hy, I've a question concerning exception-handling in c++: is there a possibility to catch any exception (I know one can do that by "catch(...)") and display its default-error-message (like in Java)? or do you have to create your own exceptions and make your own error-messages? I would only need the error-number or something like a short description which exception occured, and subsequently I want to write it to a logfile.
44
4206
by: craig | last post by:
I am wondering if there are some best practices for determining a strategy for using try/catch blocks within an application. My current thoughts are: 1. The code the initiates any high-level user tasks should always be included in a try/catch block that actually handles any exceptions that occur (log the exception, display a message box, etc.). 2. Low-level operations that are used to carry out the high level tasks
40
13507
by: Kevin Yu | last post by:
is it a bad programming design to throw exception in the try block then catch it??
3
1841
by: will | last post by:
Hi all. I've got an question about how to catch an exception. In Page_Load, I place a DataGrid, dg1, into edit mode. This will call the method called GenericGridEvent. GenericGridEvent will call a mehtod called ExceptionGenerator that will generate a run-time exception. The exception is caught in GenericGridEvent, but it isn't caught in InitializeComponenet (which doens't suprise me). I can't figure out where to catch an error that may...
5
3414
by: Nick Flandry | last post by:
I'm running into an Invalid Cast Exception on an ASP.NET application that runs fine in my development environment (Win2K server running IIS 5) and a test environment (also Win2K server running IIS 5), but fails on IIS 6 running on a Win2003 server. The web uses Pages derived from a custom class I wrote (which itself derives from Page) to provide some common functionality. The Page_Load handler the failing webpage starts out like this: ...
9
2204
by: Claudio Di Flumeri | last post by:
Hello all, I've added a global exception handler to my application in this way: Sub Main() AddHandler Application.ThreadException, AddressOf ThreadException AddHandler AppDomain.CurrentDomain.UnhandledException, AddressOf UnhandledException Application.Run(Main)
132
5539
by: Zorro | last post by:
The simplicity of stack unraveling of C++ is not without defective consequences. The following article points to C++ examples showing the defects. An engineer aware of defects can avoid hard-to-find bugs. http://distributed-software.blogspot.com/2007/01/c-exception-handling-is-defective.html Regards, zorabi@ZHMicro.com http://www.zhmicro.com http://distributed-software.blogspot.com
2
6977
by: Darko Miletic | last post by:
Recently I wrote a dll in c++ and to simplify the distribution I decided to link with multithreaded static library (/MT or /MTd option). In debug everything works fine but in release I get this: parseMetadata.obj : error LNK2001: unresolved external symbol "public: __thiscall std::exception::exception(void)" (??0exception@std@@QAE@XZ) 2>libcpmt.lib(string.obj) : error LNK2001: unresolved external symbol "public: __thiscall...
3
2023
by: Robert Rawlins | last post by:
Hi Mk, Yeah it's got me a little bemused to be honest, I've tried playing around with configuration options this morning and not been able to achieve anything that works properly. I'll keep testing though and as soon as I have a root cause to the problem I'll be sure to let the list know.
0
8221
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8662
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
8317
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8463
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7134
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6104
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5560
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4154
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
1769
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.