Click here to Skip to main content
15,886,049 members
Home / Discussions / C#
   

C#

 
AnswerRe: Is software installed on pc? Pin
Niiiissssshhhhhuuuuu7-Jun-07 18:37
Niiiissssshhhhhuuuuu7-Jun-07 18:37 
QuestionLimiting DB access to only through application Pin
tempmail17-Jun-07 11:33
tempmail17-Jun-07 11:33 
AnswerRe: Limiting DB access to only through application Pin
Christian Graus7-Jun-07 11:47
protectorChristian Graus7-Jun-07 11:47 
AnswerRe: Limiting DB access to only through application Pin
Russell Jones7-Jun-07 22:38
Russell Jones7-Jun-07 22:38 
QuestionHierarchical Distributed Genetic Algorithm for Image Segmentation Pin
Petra7-Jun-07 10:46
Petra7-Jun-07 10:46 
AnswerRe: Hierarchical Distributed Genetic Algorithm for Image Segmentation Pin
Dave Kreskowiak7-Jun-07 13:28
mveDave Kreskowiak7-Jun-07 13:28 
AnswerRe: Hierarchical Distributed Genetic Algorithm for Image Segmentation Pin
Christian Graus7-Jun-07 15:35
protectorChristian Graus7-Jun-07 15:35 
QuestionFileSystemWatcher Pin
LCI7-Jun-07 10:28
LCI7-Jun-07 10:28 
I use the FileSystemWatcher class to monitor a directory for new files.
The directory is usually empty, then i would paste some files in the directory. The files can range anywhere from 1 file to hundreds.

I have a process delay between each event call so as to avoid a sharing violation cause sometimes the event gets triggered but the file is not totally finished saving. For this delay i do:

int x = 0;
while (x<=60000000)
{
int delay = COnvert.ToInt32(x);
x++;
}

What tends to happen for a reason that i am attempting to figure out is say i paste 100 files in there. It may get stuck on the 30th file. I delete the files after i am done with them, so there would be say 70 files from the 100 that i dumped in there left in the folder. So it processed 30 but is stuck somewhere.

Is there something else that i should be aware of when using FIleSytemWatcher?
AnswerRe: FileSystemWatcher Pin
Ylno7-Jun-07 11:42
Ylno7-Jun-07 11:42 
GeneralRe: FileSystemWatcher Pin
LCI8-Jun-07 9:36
LCI8-Jun-07 9:36 
AnswerRe: FileSystemWatcher Pin
mav.northwind8-Jun-07 22:33
mav.northwind8-Jun-07 22:33 
QuestionSearch for non-ASCII characters in a text file Pin
Koshv7-Jun-07 10:22
Koshv7-Jun-07 10:22 
AnswerRe: Search for non-ASCII characters in a text file Pin
Guffa7-Jun-07 13:12
Guffa7-Jun-07 13:12 
Questionbrainbench test with no answer? Pin
brsecu7-Jun-07 10:14
brsecu7-Jun-07 10:14 
AnswerRe: brainbench test with no answer? Pin
Luc Pattyn7-Jun-07 12:45
sitebuilderLuc Pattyn7-Jun-07 12:45 
AnswerRe: brainbench test with no answer? Pin
Vrungar6-Apr-11 9:04
Vrungar6-Apr-11 9:04 
AnswerRe: brainbench test with no answer? Pin
Luc Pattyn6-Apr-11 13:46
sitebuilderLuc Pattyn6-Apr-11 13:46 
QuestionGraphics image convert to GraphicsPath ? Pin
Epsilone37-Jun-07 9:59
Epsilone37-Jun-07 9:59 
AnswerRe: Graphics image convert to GraphicsPath ? Pin
Dave Kreskowiak7-Jun-07 10:39
mveDave Kreskowiak7-Jun-07 10:39 
GeneralRe: Graphics image convert to GraphicsPath ? Pin
Epsilone37-Jun-07 12:14
Epsilone37-Jun-07 12:14 
GeneralRe: Graphics image convert to GraphicsPath ? Pin
Dave Kreskowiak7-Jun-07 13:25
mveDave Kreskowiak7-Jun-07 13:25 
AnswerRe: Graphics image convert to GraphicsPath ? Pin
Christian Graus7-Jun-07 12:09
protectorChristian Graus7-Jun-07 12:09 
GeneralRe: Graphics image convert to GraphicsPath ? Pin
Epsilone37-Jun-07 12:24
Epsilone37-Jun-07 12:24 
GeneralRe: Graphics image convert to GraphicsPath ? Pin
Christian Graus7-Jun-07 15:42
protectorChristian Graus7-Jun-07 15:42 
QuestionHow can I resize the DataGridView back to defult size? Pin
Khoramdin7-Jun-07 9:39
Khoramdin7-Jun-07 9:39 

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.