Click here to Skip to main content
15,898,588 members
Home / Discussions / C#
   

C#

 
GeneralRe: Problem in loading form Urgent please Pin
NK720-Feb-07 22:41
NK720-Feb-07 22:41 
QuestionHow to retrieve list of users from particular Active Directory Group Pin
prabhakaranns20-Feb-07 20:40
prabhakaranns20-Feb-07 20:40 
Questionproblem in web form loading Pin
EEmaan20-Feb-07 20:32
EEmaan20-Feb-07 20:32 
AnswerRe: problem in web form loading Pin
il_masacratore20-Feb-07 21:34
il_masacratore20-Feb-07 21:34 
AnswerRe: problem in web form loading Pin
K.P.Kannan20-Feb-07 22:11
K.P.Kannan20-Feb-07 22:11 
QuestionWindows File System Refresh in C# Application Pin
Sunil Jampa20-Feb-07 19:23
Sunil Jampa20-Feb-07 19:23 
AnswerRe: Windows File System Refresh in C# Application Pin
Niiiissssshhhhhuuuuu20-Feb-07 19:52
Niiiissssshhhhhuuuuu20-Feb-07 19:52 
GeneralRe: Windows File System Refresh in C# Application Pin
Niiiissssshhhhhuuuuu20-Feb-07 19:55
Niiiissssshhhhhuuuuu20-Feb-07 19:55 
Hello,

// Create a new FileSystemWatcher and set its properties.
FileSystemWatcher watcher = new FileSystemWatcher();
watcher.Path = args[1];
/* Watch for changes in LastAccess and LastWrite times, and
the renaming of files or directories. */
watcher.NotifyFilter = NotifyFilters.LastAccess | NotifyFilters.LastWrite
| NotifyFilters.FileName | NotifyFilters.DirectoryName;
// Only watch text files.
watcher.Filter = "*.txt";

// Add event handlers.
watcher.Changed += new FileSystemEventHandler(OnChanged);
watcher.Created += new FileSystemEventHandler(OnChanged);
watcher.Deleted += new FileSystemEventHandler(OnChanged);
watcher.Renamed += new RenamedEventHandler(OnRenamed);

// Begin watching.
watcher.EnableRaisingEvents = true



Regards Rose | [Rose] ,

nishu
GeneralRe: Windows File System Refresh in C# Application Pin
Sunil Jampa20-Feb-07 20:17
Sunil Jampa20-Feb-07 20:17 
GeneralRe: Windows File System Refresh in C# Application Pin
Niiiissssshhhhhuuuuu20-Feb-07 20:31
Niiiissssshhhhhuuuuu20-Feb-07 20:31 
QuestionPop Up Menu Pin
hiremath7120-Feb-07 19:21
hiremath7120-Feb-07 19:21 
AnswerRe: Pop Up Menu Pin
Niiiissssshhhhhuuuuu20-Feb-07 20:12
Niiiissssshhhhhuuuuu20-Feb-07 20:12 
GeneralRe: Pop Up Menu Pin
hiremath7120-Feb-07 21:52
hiremath7120-Feb-07 21:52 
GeneralRe: Pop Up Menu Pin
Niiiissssshhhhhuuuuu20-Feb-07 22:57
Niiiissssshhhhhuuuuu20-Feb-07 22:57 
GeneralRe: Pop Up Menu Pin
hiremath7120-Feb-07 23:05
hiremath7120-Feb-07 23:05 
QuestionWindows Locatin Pin
hiremath7120-Feb-07 19:14
hiremath7120-Feb-07 19:14 
AnswerRe: Windows Locatin Pin
stancrm20-Feb-07 20:58
stancrm20-Feb-07 20:58 
GeneralRe: Windows Locatin Pin
hiremath7120-Feb-07 22:20
hiremath7120-Feb-07 22:20 
GeneralRe: Windows Locatin Pin
KrunalC20-Feb-07 22:35
KrunalC20-Feb-07 22:35 
GeneralRe: Windows Locatin Pin
hiremath7120-Feb-07 23:20
hiremath7120-Feb-07 23:20 
QuestionImageList Pin
Jeeva Jose20-Feb-07 19:09
Jeeva Jose20-Feb-07 19:09 
AnswerRe: ImageList Pin
il_masacratore20-Feb-07 21:35
il_masacratore20-Feb-07 21:35 
QuestionAccessing GIF Color Table? Pin
jak10278920-Feb-07 18:12
jak10278920-Feb-07 18:12 
Questionweb monitoring Pin
Member 369658120-Feb-07 18:11
Member 369658120-Feb-07 18:11 
AnswerRe: web monitoring Pin
Niiiissssshhhhhuuuuu20-Feb-07 19:46
Niiiissssshhhhhuuuuu20-Feb-07 19:46 

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.