Click here to Skip to main content
15,921,577 members
Home / Discussions / C#
   

C#

 
QuestionRe: Unique Serial Number of an SD (Secure Digital) Memory Card Pin
harold aptroot14-Dec-09 0:29
harold aptroot14-Dec-09 0:29 
Answer[Message Deleted] Pin
Gaurav Dudeja India14-Dec-09 0:31
Gaurav Dudeja India14-Dec-09 0:31 
GeneralRe: Unique Serial Number of an SD (Secure Digital) Memory Card Pin
harold aptroot14-Dec-09 0:40
harold aptroot14-Dec-09 0:40 
GeneralRe: Unique Serial Number of an SD (Secure Digital) Memory Card Pin
Abhinav S14-Dec-09 0:50
Abhinav S14-Dec-09 0:50 
AnswerRe: Unique Serial Number of an SD (Secure Digital) Memory Card Pin
OriginalGriff14-Dec-09 0:59
mveOriginalGriff14-Dec-09 0:59 
GeneralRe: Unique Serial Number of an SD (Secure Digital) Memory Card Pin
Gaurav Dudeja India14-Dec-09 1:01
Gaurav Dudeja India14-Dec-09 1:01 
GeneralRe: Unique Serial Number of an SD (Secure Digital) Memory Card Pin
OriginalGriff14-Dec-09 1:15
mveOriginalGriff14-Dec-09 1:15 
QuestionApplication common data with write permission to all user Pin
Maddie from Dartford13-Dec-09 23:41
Maddie from Dartford13-Dec-09 23:41 
AnswerRe: Application common data with write permission to all user Pin
OriginalGriff14-Dec-09 1:32
mveOriginalGriff14-Dec-09 1:32 
GeneralRe: Application common data with write permission to all user Pin
Maddie from Dartford14-Dec-09 2:49
Maddie from Dartford14-Dec-09 2:49 
GeneralRe: Application common data with write permission to all user Pin
OriginalGriff14-Dec-09 4:10
mveOriginalGriff14-Dec-09 4:10 
GeneralRe: Application common data with write permission to all user Pin
Maddie from Dartford14-Dec-09 6:39
Maddie from Dartford14-Dec-09 6:39 
GeneralRe: Application common data with write permission to all user Pin
OriginalGriff14-Dec-09 8:32
mveOriginalGriff14-Dec-09 8:32 
GeneralRe: Application common data with write permission to all user Pin
Maddie from Dartford15-Dec-09 21:30
Maddie from Dartford15-Dec-09 21:30 
QuestionC# code to Cut Polygon in shape file using MapWinGIS Pin
rag_Singh13-Dec-09 23:34
rag_Singh13-Dec-09 23:34 
Questionhow to create xm elements with nodes Pin
Priya Prk13-Dec-09 23:33
Priya Prk13-Dec-09 23:33 
AnswerMessage Closed Pin
13-Dec-09 23:48
stancrm13-Dec-09 23:48 
GeneralRe: how to create xm elements with nodes Pin
Priya Prk14-Dec-09 0:13
Priya Prk14-Dec-09 0:13 
Questionadd images in checkedlistbox in C# Pin
yogesh_softworld12313-Dec-09 22:44
yogesh_softworld12313-Dec-09 22:44 
AnswerRe: add images in checkedlistbox in C# Pin
Eduard Keilholz13-Dec-09 23:15
Eduard Keilholz13-Dec-09 23:15 
QuestionEnabling buttons at run time Pin
tasumisra13-Dec-09 22:37
tasumisra13-Dec-09 22:37 
AnswerRe: Enabling buttons at run time Pin
Rob Philpott13-Dec-09 22:57
Rob Philpott13-Dec-09 22:57 
AnswerRe: Enabling buttons at run time [modified] Pin
#realJSOP13-Dec-09 23:56
professional#realJSOP13-Dec-09 23:56 
Write a method like this:

private void ToggleButtonGroup(Button button)
{
    button1.Enabled = (this.button1 == button);
    button2.Enabled = (this.button2 == button);
    button3.Enabled = (this.button3 == button);
    button4.Enabled = (this.button4 == button);
}


Call this method from each appropriate button handler. If you passed this.button4 to the method, button4 would be enabled, and the rest would be disabled.

.45 ACP - because shooting twice is just silly
-----
"Why don't you tie a kerosene-soaked rag around your ankles so the ants won't climb up and eat your candy ass..." - Dale Earnhardt, 1997
-----
"The staggering layers of obscenity in your statement make it a work of art on so many levels." - J. Jystad, 2001

modified on Monday, December 14, 2009 8:22 AM

GeneralRe: Enabling buttons at run time Pin
tasumisra14-Dec-09 4:10
tasumisra14-Dec-09 4:10 
AnswerRe: Enabling buttons at run time Pin
vtchris-peterson14-Dec-09 4:00
vtchris-peterson14-Dec-09 4:00 

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.