Click here to Skip to main content
15,905,963 members
Home / Discussions / C#
   

C#

 
QuestionJoystick value Pin
Danny198212-Feb-06 13:15
Danny198212-Feb-06 13:15 
AnswerRe: Joystick value Pin
Ravi Bhavnani12-Feb-06 13:23
professionalRavi Bhavnani12-Feb-06 13:23 
GeneralRe: Joystick value Pin
Danny198212-Feb-06 23:10
Danny198212-Feb-06 23:10 
GeneralRe: Joystick value Pin
Ravi Bhavnani13-Feb-06 1:51
professionalRavi Bhavnani13-Feb-06 1:51 
GeneralRe: Joystick value Pin
Danny198213-Feb-06 12:27
Danny198213-Feb-06 12:27 
QuestionOpening the Shell File/Folder Properties Dialog Pin
DigitalKing12-Feb-06 12:53
DigitalKing12-Feb-06 12:53 
AnswerRe: Opening the Shell File/Folder Properties Dialog Pin
Ravi Bhavnani12-Feb-06 13:12
professionalRavi Bhavnani12-Feb-06 13:12 
GeneralRe: Opening the Shell File/Folder Properties Dialog Pin
DigitalKing12-Feb-06 13:39
DigitalKing12-Feb-06 13:39 
QuestionProblem for change datagrid property in form1 from other forms Pin
hdv21212-Feb-06 12:45
hdv21212-Feb-06 12:45 
Questionhow to use app.config file ? Pin
hdv21212-Feb-06 11:30
hdv21212-Feb-06 11:30 
AnswerRe: how to use app.config file ? Pin
Ravi Bhavnani12-Feb-06 12:14
professionalRavi Bhavnani12-Feb-06 12:14 
GeneralRe: how to use app.config file ? Pin
hdv21212-Feb-06 13:11
hdv21212-Feb-06 13:11 
GeneralRe: how to use app.config file ? Pin
Ravi Bhavnani12-Feb-06 13:18
professionalRavi Bhavnani12-Feb-06 13:18 
GeneralRe: how to use app.config file ? Pin
J4amieC12-Feb-06 21:20
J4amieC12-Feb-06 21:20 
QuestionPassing command line arguments to the main method Pin
kourvoisier12-Feb-06 9:33
kourvoisier12-Feb-06 9:33 
AnswerRe: Passing command line arguments to the main method Pin
User 665812-Feb-06 9:41
User 665812-Feb-06 9:41 
GeneralRe: Passing command line arguments to the main method Pin
Wayne Phipps12-Feb-06 10:07
Wayne Phipps12-Feb-06 10:07 
GeneralRe: Passing command line arguments to the main method Pin
kourvoisier12-Feb-06 10:44
kourvoisier12-Feb-06 10:44 
QuestionTraceSwitch doesn't get settings from App.config Pin
Optimus Chaos12-Feb-06 4:31
Optimus Chaos12-Feb-06 4:31 
QuestionHow To Load App Setting From Registry ? Pin
hdv21212-Feb-06 1:55
hdv21212-Feb-06 1:55 
hi i want to save app setting in registry (for example dataGrid1.AlternatingBackColor)
and this is way that i used for save value to registry :

RegistryKey regkey = Registry.CurrentUser.CreateSubKey(@"SST\Full_SaveSetting\Setting");
regkey.SetValue("Datagrid_AlternatingBackColor",dataGrid1.AlternatingBackColor);

and when i load dataGrid1.AlternatingBackColor from registry as following :

RegistryKey regkey = Registry.CurrentUser.CreateSubKey(@"SST\Full_SaveSetting\Setting");
dataGrid1.AlternatingBackColor=(System.Drawing.Color)regkey.GetValue("Datagrid_AlternatingBackColor");

An unhandled exception of type 'System.InvalidCastException' occurred in it :
Additional information: Specified cast is not valid.

how to cast regkey value to color to solve my problem ????????
AnswerRe: How To Load App Setting From Registry ? Pin
Wayne Phipps12-Feb-06 2:09
Wayne Phipps12-Feb-06 2:09 
GeneralRe: How To Load App Setting From Registry ? Pin
hdv21212-Feb-06 2:25
hdv21212-Feb-06 2:25 
GeneralRe: How To Load App Setting From Registry ? Pin
Wayne Phipps12-Feb-06 3:27
Wayne Phipps12-Feb-06 3:27 
Questiondatagrid Pin
Gamil Mohamad12-Feb-06 1:02
Gamil Mohamad12-Feb-06 1:02 
QuestionPrinting question Pin
Timothy_198211-Feb-06 23:06
Timothy_198211-Feb-06 23:06 

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.