Click here to Skip to main content
15,887,596 members
Home / Discussions / C#
   

C#

 
QuestionHow can I hide notify icons programmatically? Pin
LordCover7-Jun-08 15:05
LordCover7-Jun-08 15:05 
AnswerRe: How can I hide notify icons programmatically? Pin
Gareth H7-Jun-08 22:12
Gareth H7-Jun-08 22:12 
GeneralRe: How can I hide notify icons programmatically? Pin
LordCover9-Jun-08 0:25
LordCover9-Jun-08 0:25 
GeneralRe: How can I hide notify icons programmatically? Pin
LordCover9-Jun-08 0:34
LordCover9-Jun-08 0:34 
AnswerRe: How can I hide notify icons programmatically? Pin
Giorgi Dalakishvili7-Jun-08 23:58
mentorGiorgi Dalakishvili7-Jun-08 23:58 
GeneralRe: How can I hide notify icons programmatically? Pin
LordCover9-Jun-08 0:29
LordCover9-Jun-08 0:29 
GeneralRe: How can I hide notify icons programmatically? Pin
Giorgi Dalakishvili9-Jun-08 1:03
mentorGiorgi Dalakishvili9-Jun-08 1:03 
QuestionDriveInfo - Removing a drive entry. Pin
Jammer7-Jun-08 12:28
Jammer7-Jun-08 12:28 
Hi All,

I've been looking at this code and just cannot work out what the best solution is. My program runs this code:

private static void GetMachinesDirectoryList(bool ignoreC)
{
    DriveInfo[] drives = DriveInfo.GetDrives();
    foreach (DriveInfo drive in drives)
    {
        if (drive.DriveType == DriveType.Fixed && drive.IsReady == true)
        {
            ScanDir(DirectoryList, drive.ToString());
        }
    }
}


As you can see from the input parameter sometimes I don't want to scan the C:\ drive. What's the best way of doing this cleanly inside this method? I don't really want to start copying the DriveInfo[] to a string array as I'll then need to modify the drive.DriveType/Isready stuff and in so doing making this a much larger method.

Any thoughts would be great.

Cheers,

Jammer

Going where everyone here has gone before! Smile | :)
My Blog

AnswerRe: DriveInfo - Removing a drive entry. Pin
Jammer7-Jun-08 12:48
Jammer7-Jun-08 12:48 
GeneralRe: DriveInfo - Removing a drive entry. Pin
User 66587-Jun-08 23:29
User 66587-Jun-08 23:29 
GeneralRe: DriveInfo - Removing a drive entry. Pin
Jammer8-Jun-08 0:10
Jammer8-Jun-08 0:10 
QuestionDatatable rows check Pin
NewToAspDotNet7-Jun-08 10:14
NewToAspDotNet7-Jun-08 10:14 
AnswerRe: Datatable rows check Pin
Gareth H7-Jun-08 10:22
Gareth H7-Jun-08 10:22 
GeneralReflection or Serialization Pin
sourceisnothere7-Jun-08 9:14
sourceisnothere7-Jun-08 9:14 
GeneralRe: Reflection or Serialization Pin
User 66587-Jun-08 9:51
User 66587-Jun-08 9:51 
GeneralRe: Reflection or Serialization Pin
sourceisnothere7-Jun-08 10:42
sourceisnothere7-Jun-08 10:42 
QuestionAn other image processing Pin
Sajjad Izadi7-Jun-08 8:46
Sajjad Izadi7-Jun-08 8:46 
AnswerRe: An other image processing Pin
User 66587-Jun-08 9:25
User 66587-Jun-08 9:25 
GeneralRe: An other image processing Pin
Sajjad Izadi7-Jun-08 9:32
Sajjad Izadi7-Jun-08 9:32 
GeneralRe: An other image processing Pin
User 66587-Jun-08 9:36
User 66587-Jun-08 9:36 
QuestionImage processing Pin
Sajjad Izadi7-Jun-08 7:13
Sajjad Izadi7-Jun-08 7:13 
AnswerRe: Image processing Pin
Kristian Sixhøj7-Jun-08 7:18
Kristian Sixhøj7-Jun-08 7:18 
GeneralRe: Image processing Pin
Sajjad Izadi7-Jun-08 8:27
Sajjad Izadi7-Jun-08 8:27 
AnswerRe: Image processing Pin
User 66587-Jun-08 8:12
User 66587-Jun-08 8:12 
QuestionRe: Image processing Pin
Sajjad Izadi7-Jun-08 8:34
Sajjad Izadi7-Jun-08 8:34 

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.