Click here to Skip to main content
15,925,661 members
Home / Discussions / C#
   

C#

 
QuestionDifferance Between Protected and protected internal Pin
Rahul.RK24-Jun-07 23:54
Rahul.RK24-Jun-07 23:54 
AnswerRe: Differance Between Protected and protected internal Pin
Colin Angus Mackay25-Jun-07 0:00
Colin Angus Mackay25-Jun-07 0:00 
GeneralRe: Differance Between Protected and protected internal Pin
Rahul.RK25-Jun-07 0:05
Rahul.RK25-Jun-07 0:05 
GeneralRe: Differance Between Protected and protected internal Pin
Colin Angus Mackay25-Jun-07 0:09
Colin Angus Mackay25-Jun-07 0:09 
GeneralRe: Differance Between Protected and protected internal Pin
Rahul.RK25-Jun-07 0:18
Rahul.RK25-Jun-07 0:18 
GeneralRe: Differance Between Protected and protected internal Pin
Colin Angus Mackay25-Jun-07 0:23
Colin Angus Mackay25-Jun-07 0:23 
GeneralRe: Differance Between Protected and protected internal Pin
Rahul.RK25-Jun-07 0:25
Rahul.RK25-Jun-07 0:25 
QuestionDBNull.Value problem Pin
t4ure4n24-Jun-07 23:46
t4ure4n24-Jun-07 23:46 
AnswerRe: DBNull.Value problem Pin
Colin Angus Mackay24-Jun-07 23:55
Colin Angus Mackay24-Jun-07 23:55 
GeneralRe: DBNull.Value problem Pin
t4ure4n24-Jun-07 23:57
t4ure4n24-Jun-07 23:57 
GeneralRe: DBNull.Value problem Pin
Colin Angus Mackay25-Jun-07 0:03
Colin Angus Mackay25-Jun-07 0:03 
GeneralRe: DBNull.Value problem Pin
Colin Angus Mackay25-Jun-07 0:04
Colin Angus Mackay25-Jun-07 0:04 
GeneralRe: DBNull.Value problem Pin
martin_hughes25-Jun-07 1:07
martin_hughes25-Jun-07 1:07 
AnswerRe: DBNull.Value problem Pin
blackjack215025-Jun-07 0:20
blackjack215025-Jun-07 0:20 
GeneralRe: DBNull.Value problem Pin
t4ure4n25-Jun-07 0:25
t4ure4n25-Jun-07 0:25 
AnswerRe: DBNull.Value problem Pin
blackjack215025-Jun-07 0:51
blackjack215025-Jun-07 0:51 
GeneralRe: DBNull.Value problem Pin
t4ure4n25-Jun-07 0:56
t4ure4n25-Jun-07 0:56 
Questiondividing a windows forms in two Pin
justintimberlake24-Jun-07 23:40
justintimberlake24-Jun-07 23:40 
AnswerRe: dividing a windows forms in two Pin
Colin Angus Mackay24-Jun-07 23:45
Colin Angus Mackay24-Jun-07 23:45 
GeneralRe: dividing a windows forms in two Pin
justintimberlake24-Jun-07 23:54
justintimberlake24-Jun-07 23:54 
GeneralRe: dividing a windows forms in two Pin
Colin Angus Mackay24-Jun-07 23:57
Colin Angus Mackay24-Jun-07 23:57 
GeneralRe: dividing a windows forms in two Pin
mav.northwind25-Jun-07 19:02
mav.northwind25-Jun-07 19:02 
QuestionSQL Server Business Intelligence Development Studio? Pin
ASysSolvers24-Jun-07 23:30
ASysSolvers24-Jun-07 23:30 
AnswerRe: SQL Server Business Intelligence Development Studio? Pin
Colin Angus Mackay24-Jun-07 23:46
Colin Angus Mackay24-Jun-07 23:46 
QuestionFile ACL Pin
Tauseef A24-Jun-07 23:26
Tauseef A24-Jun-07 23:26 
hi guys

i am doing the following but it does not work, there is no error or exception

but the file acees rights are not changes, means i cant allow or deny file access rights with this code in my application, i m pasting the code plz help me out there?


FileSecurity fs = System.IO.File.GetAccessControl(@"\\Jpak02\Comm for ITS\TAhmad",
AccessControlSections.Access);
FileSystemAccessRule ar = new FileSystemAccessRule
("mkhkhan", FileSystemRights.Modify, AccessControlType.Allow);
fs.AddAccessRule(ar);

it doest not work,,

thanks in advance
best regards




hello

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.