Click here to Skip to main content
15,923,789 members
Home / Discussions / C#
   

C#

 
GeneralRe: How to view a table using the Data Grid View Pin
SeMartens6-Jan-10 20:10
SeMartens6-Jan-10 20:10 
AnswerRe: How to view a table using the Data Grid View Pin
carlecomm6-Jan-10 15:51
carlecomm6-Jan-10 15:51 
GeneralRe: How to view a table using the Data Grid View Pin
Jeff Patterson6-Jan-10 17:05
Jeff Patterson6-Jan-10 17:05 
QuestionList open Excel files Pin
Akash Patki5-Jan-10 16:35
Akash Patki5-Jan-10 16:35 
AnswerRe: List open Excel files Pin
dojohansen7-Jan-10 6:08
dojohansen7-Jan-10 6:08 
GeneralRe: List open Excel files Pin
Akash Patki7-Jan-10 7:11
Akash Patki7-Jan-10 7:11 
Questioncrystal Reports problem? Pin
miss YY5-Jan-10 14:47
miss YY5-Jan-10 14:47 
AnswerRe: crystal Reports problem? Pin
Garth J Lancaster5-Jan-10 16:00
professionalGarth J Lancaster5-Jan-10 16:00 
Questiongetting country location based on IP address [modified] Pin
uglyeyes5-Jan-10 14:30
uglyeyes5-Jan-10 14:30 
AnswerRe: getting country location based on IP address Pin
Garth J Lancaster5-Jan-10 15:51
professionalGarth J Lancaster5-Jan-10 15:51 
GeneralRe: getting country location based on IP address Pin
uglyeyes5-Jan-10 18:05
uglyeyes5-Jan-10 18:05 
GeneralRe: getting country location based on IP address Pin
Garth J Lancaster5-Jan-10 18:09
professionalGarth J Lancaster5-Jan-10 18:09 
GeneralRe: getting country location based on IP address Pin
Garth J Lancaster5-Jan-10 18:16
professionalGarth J Lancaster5-Jan-10 18:16 
GeneralRe: getting country location based on IP address Pin
uglyeyes6-Jan-10 9:07
uglyeyes6-Jan-10 9:07 
GeneralRe: getting country location based on IP address Pin
uglyeyes6-Jan-10 10:57
uglyeyes6-Jan-10 10:57 
GeneralRe: getting country location based on IP address Pin
uglyeyes12-Jan-10 15:41
uglyeyes12-Jan-10 15:41 
AnswerRe: getting country location based on IP address Pin
Ravi Sant14-Apr-11 1:50
Ravi Sant14-Apr-11 1:50 
GeneralThoughts on CrystalReports Pin
SusanP15-Jan-10 14:04
SusanP15-Jan-10 14:04 
GeneralRe: Thoughts on CrystalReports Pin
DaveyM695-Jan-10 14:32
professionalDaveyM695-Jan-10 14:32 
GeneralRe: Thoughts on CrystalReports Pin
SusanP15-Jan-10 14:36
SusanP15-Jan-10 14:36 
QuestionCryptographic Service Provider: How Do I Secure Machine-Level RSA Key Containers? Pin
Skippums5-Jan-10 11:58
Skippums5-Jan-10 11:58 
I am wondering how to create a key container on a machine that only my application can access. I have successfully created and used the container, but I think that other users and applications on the machine have access to the private key. Is there any way to protect this information? The code used to generate and utilize the CspParameters object is below:
CspParameters csp      = new CspParameters();
csp.Flags              = CspProviderFlags.UseMachineKeyStore |
                         CspProviderFlags.UseNonExportableKey;
csp.KeyContainerName   = "Example Container Name";
RSACryptoServiceProvider rsa = new RSACryptoServiceProvider(1024, csp);
Thanks,

Sounds like somebody's got a case of the Mondays

-Jeff

QuestionFile already Loaded, Save Pin
San245-Jan-10 9:33
San245-Jan-10 9:33 
AnswerRe: File already Loaded, Save Pin
Not Active5-Jan-10 9:45
mentorNot Active5-Jan-10 9:45 
AnswerRe: File already Loaded, Save Pin
Skippums5-Jan-10 12:12
Skippums5-Jan-10 12:12 
QuestionStreams and Cryptography (Padding is invalid and cannot be removed) Pin
Skippums5-Jan-10 9:26
Skippums5-Jan-10 9:26 

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.