Click here to Skip to main content
15,895,011 members
Home / Discussions / C#
   

C#

 
GeneralRe: Measure Character Pin
Werdna10-Mar-04 11:51
Werdna10-Mar-04 11:51 
GeneralRe: Measure Character Pin
Heath Stewart10-Mar-04 11:27
protectorHeath Stewart10-Mar-04 11:27 
GeneralAmbientUserMode Pin
Andy H10-Mar-04 8:13
Andy H10-Mar-04 8:13 
GeneralRe: AmbientUserMode Pin
Heath Stewart10-Mar-04 10:05
protectorHeath Stewart10-Mar-04 10:05 
GeneralRe: AmbientUserMode Pin
Heath Stewart10-Mar-04 11:53
protectorHeath Stewart10-Mar-04 11:53 
GeneralFileAttributes Pin
Jonathan Slenders10-Mar-04 7:36
Jonathan Slenders10-Mar-04 7:36 
GeneralRe: FileAttributes Pin
Mike Ellison10-Mar-04 8:14
Mike Ellison10-Mar-04 8:14 
GeneralRe: FileAttributes Pin
Heath Stewart10-Mar-04 10:14
protectorHeath Stewart10-Mar-04 10:14 
See FileInfo.Attributes (inherited form FileSystemInfo). You can use bitwise operators to change the flags. For instance, to exclude the read-only, hidden, and archive flags, you could do something like this:
FileInfo info = new FileInfo("path");
info.Attributes &= ~(FileAttributes.ReadOnly | FileAttributes.Hidden
  | FileAttributes.Archive);


 

Microsoft MVP, Visual C#
My Articles
GeneralJust like the System Clock Pin
Guinness4Strength10-Mar-04 6:23
Guinness4Strength10-Mar-04 6:23 
GeneralRe: Just like the System Clock Pin
Heath Stewart10-Mar-04 6:26
protectorHeath Stewart10-Mar-04 6:26 
Generalhello! help for SMSC class Pin
ftanriov10-Mar-04 5:59
ftanriov10-Mar-04 5:59 
GeneralRe: hello! help for SMSC class Pin
Heath Stewart10-Mar-04 6:41
protectorHeath Stewart10-Mar-04 6:41 
GeneralRe: hello! help for SMSC class Pin
ftanriov10-Mar-04 6:48
ftanriov10-Mar-04 6:48 
GeneralRe: hello! help for SMSC class Pin
Heath Stewart10-Mar-04 6:58
protectorHeath Stewart10-Mar-04 6:58 
GeneralRe: hello! help for SMSC class Pin
ftanriov10-Mar-04 6:52
ftanriov10-Mar-04 6:52 
GeneralRe: hello! help for SMSC class Pin
ftanriov10-Mar-04 6:57
ftanriov10-Mar-04 6:57 
GeneralInterop with MSDev from a C# application Pin
Eric Marchesin10-Mar-04 4:10
Eric Marchesin10-Mar-04 4:10 
GeneralRe: Interop with MSDev from a C# application Pin
Mazdak10-Mar-04 5:03
Mazdak10-Mar-04 5:03 
GeneralRe: Interop with MSDev from a C# application Pin
Eric Marchesin10-Mar-04 7:21
Eric Marchesin10-Mar-04 7:21 
GeneralRe: Interop with MSDev from a C# application Pin
Heath Stewart10-Mar-04 6:36
protectorHeath Stewart10-Mar-04 6:36 
GeneralRe: Interop with MSDev from a C# application Pin
Eric Marchesin10-Mar-04 7:33
Eric Marchesin10-Mar-04 7:33 
GeneralRe: Interop with MSDev from a C# application Pin
Heath Stewart10-Mar-04 9:57
protectorHeath Stewart10-Mar-04 9:57 
GeneralRe: Interop with MSDev from a C# application Pin
Eric Marchesin10-Mar-04 21:40
Eric Marchesin10-Mar-04 21:40 
GeneralRe: Interop with MSDev from a C# application Pin
Heath Stewart11-Mar-04 2:58
protectorHeath Stewart11-Mar-04 2:58 
GeneralRe: Interop with MSDev from a C# application Pin
Eric Marchesin11-Mar-04 22:56
Eric Marchesin11-Mar-04 22:56 

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.