Click here to Skip to main content
15,907,001 members
Home / Discussions / C#
   

C#

 
GeneralRe: Control updating is slow Pin
Geert van Horrik19-Jul-07 3:27
Geert van Horrik19-Jul-07 3:27 
GeneralRe: Control updating is slow Pin
Luc Pattyn19-Jul-07 3:40
sitebuilderLuc Pattyn19-Jul-07 3:40 
GeneralRe: Control updating is slow Pin
Luc Pattyn19-Jul-07 3:45
sitebuilderLuc Pattyn19-Jul-07 3:45 
QuestionHow to unregister an event Pin
t4ure4n19-Jul-07 1:51
t4ure4n19-Jul-07 1:51 
AnswerRe: How to unregister an event Pin
kubben19-Jul-07 2:00
kubben19-Jul-07 2:00 
AnswerRe: How to unregister an event Pin
Luc Pattyn19-Jul-07 2:01
sitebuilderLuc Pattyn19-Jul-07 2:01 
GeneralRe: How to unregister an event Pin
Dan Neely19-Jul-07 2:19
Dan Neely19-Jul-07 2:19 
GeneralRe: How to unregister an event Pin
Luc Pattyn19-Jul-07 2:35
sitebuilderLuc Pattyn19-Jul-07 2:35 
GeneralRe: How to unregister an event Pin
Bijesh19-Jul-07 3:56
Bijesh19-Jul-07 3:56 
GeneralRe: How to unregister an event Pin
Luc Pattyn19-Jul-07 5:32
sitebuilderLuc Pattyn19-Jul-07 5:32 
GeneralRe: How to unregister an event Pin
Luc Pattyn24-Jul-07 6:46
sitebuilderLuc Pattyn24-Jul-07 6:46 
GeneralRe: How to unregister an event Pin
Martin#19-Jul-07 2:33
Martin#19-Jul-07 2:33 
GeneralRe: How to unregister an event Pin
Luc Pattyn19-Jul-07 2:38
sitebuilderLuc Pattyn19-Jul-07 2:38 
GeneralRe: How to unregister an event Pin
Martin#19-Jul-07 2:48
Martin#19-Jul-07 2:48 
AnswerRe: How to unregister an event Pin
b_umika19-Jul-07 2:01
b_umika19-Jul-07 2:01 
QuestionGenerating a program ID Pin
Muntyness19-Jul-07 1:49
Muntyness19-Jul-07 1:49 
AnswerRe: Generating a program ID Pin
ekynox19-Jul-07 2:04
ekynox19-Jul-07 2:04 
AnswerRe: Generating a program ID Pin
Luc Pattyn19-Jul-07 2:04
sitebuilderLuc Pattyn19-Jul-07 2:04 
AnswerRe: Generating a program ID Pin
Chintan.Desai19-Jul-07 2:29
Chintan.Desai19-Jul-07 2:29 
AnswerRe: Generating a program ID Pin
Muntyness19-Jul-07 6:50
Muntyness19-Jul-07 6:50 
QuestionCreating directory trees with 1M nodes Pin
ss4219-Jul-07 1:44
ss4219-Jul-07 1:44 
AnswerRe: Creating directory trees with 1M nodes Pin
Luc Pattyn19-Jul-07 2:20
sitebuilderLuc Pattyn19-Jul-07 2:20 
Hi,

you MUST use try-catch for operations that MIGHT fail due to external circumstances,
since they WILL fail sooner or later.

How big is your D: drive ?

In your case, my best guess (and the try-catch would have shown you already) is
your D: drive is full. Each directory takes at least one cluster, cluster size depends
on partition size, but is at least one sector (normally 0.5KB).

When the disk is full, you get an IOException. I dont know what you did not to get it,
maybe running in a separate thread ??

Smile | :)



AnswerRe: Creating directory trees with 1M nodes Pin
ss4219-Jul-07 2:22
ss4219-Jul-07 2:22 
AnswerRe: Creating directory trees with 1M nodes Pin
Mike Dimmick19-Jul-07 2:49
Mike Dimmick19-Jul-07 2:49 
QuestionWhat event fired when multiple rows in data grid selected? Pin
Janu_M19-Jul-07 1:41
Janu_M19-Jul-07 1:41 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.