Click here to Skip to main content
15,887,485 members
Home / Discussions / C#
   

C#

 
GeneralRe: Marshaling between managed and unmanaged Pin
Luc Pattyn29-Sep-09 5:36
sitebuilderLuc Pattyn29-Sep-09 5:36 
GeneralRe: Marshaling between managed and unmanaged Pin
akhanal29-Sep-09 5:32
akhanal29-Sep-09 5:32 
GeneralRe: Marshaling between managed and unmanaged Pin
Luc Pattyn29-Sep-09 5:37
sitebuilderLuc Pattyn29-Sep-09 5:37 
GeneralRe: Marshaling between managed and unmanaged [modified] Pin
akhanal29-Sep-09 6:01
akhanal29-Sep-09 6:01 
GeneralRe: Marshaling between managed and unmanaged Pin
Luc Pattyn29-Sep-09 6:15
sitebuilderLuc Pattyn29-Sep-09 6:15 
GeneralRe: Marshaling between managed and unmanaged Pin
akhanal29-Sep-09 6:27
akhanal29-Sep-09 6:27 
QuestionGetting the selected items from a radioButton group Pin
Twyce28-Sep-09 6:42
Twyce28-Sep-09 6:42 
AnswerRe: Getting the selected items from a radioButton group Pin
Michael Eber28-Sep-09 7:04
Michael Eber28-Sep-09 7:04 
Not sure if you are doing this in a web page or in a rich client. In a rich client application it is very easy:

Create your group and put all radio buttons in there.
Bind all buttons to a single event handler.
In the event handler write something like this:
foreach ( RadioButton item in myGroup.Controls)
{
      if ( item.Checked )
      {
         // TODO: Insert your code here
      }
      else
          continue;
}


Now for the not-so-rich-and-pissy web interface you should confirm that all of your radio buttons have AutoPostBack=true and see if that helps your situation.
QuestionCrystal Report at User's Computer Pin
Said Ali Jalali28-Sep-09 5:05
Said Ali Jalali28-Sep-09 5:05 
AnswerRe: Crystal Report at User's Computer Pin
Not Active28-Sep-09 5:12
mentorNot Active28-Sep-09 5:12 
AnswerRe: Crystal Report at User's Computer Pin
hosseinghazanfary28-Sep-09 6:08
hosseinghazanfary28-Sep-09 6:08 
AnswerRe: Crystal Report at User's Computer Pin
Paramhans Dubey29-Sep-09 2:45
professionalParamhans Dubey29-Sep-09 2:45 
QuestionSelect Row in DataGridView By Using Code (Physically) Pin
Thaer Hamael28-Sep-09 5:02
Thaer Hamael28-Sep-09 5:02 
AnswerRe: Select Row in DataGridView By Using Code (Physically) Pin
Not Active28-Sep-09 5:10
mentorNot Active28-Sep-09 5:10 
GeneralRe: Select Row in DataGridView By Using Code (Physically) Pin
Thaer Hamael28-Sep-09 5:20
Thaer Hamael28-Sep-09 5:20 
GeneralRe: Select Row in DataGridView By Using Code (Physically) Pin
MickCurley28-Sep-09 7:20
MickCurley28-Sep-09 7:20 
GeneralRe: Select Row in DataGridView By Using Code (Physically) Pin
Thaer Hamael28-Sep-09 20:48
Thaer Hamael28-Sep-09 20:48 
AnswerRe: Select Row in DataGridView By Using Code (Physically) Pin
bscaer28-Sep-09 5:39
bscaer28-Sep-09 5:39 
Questiondllnotfoundexception when compiling release version Pin
tjeffries28-Sep-09 4:50
tjeffries28-Sep-09 4:50 
QuestionReflection-Typecasting on a SortedList / KeyValuePair Pin
StephenGStone28-Sep-09 4:41
StephenGStone28-Sep-09 4:41 
AnswerRe: Reflection-Typecasting on a SortedList / KeyValuePair Pin
Henry Minute28-Sep-09 5:09
Henry Minute28-Sep-09 5:09 
GeneralRe: Reflection-Typecasting on a SortedList / KeyValuePair Pin
StephenGStone28-Sep-09 5:58
StephenGStone28-Sep-09 5:58 
GeneralRe: Reflection-Typecasting on a SortedList / KeyValuePair Pin
Henry Minute28-Sep-09 10:04
Henry Minute28-Sep-09 10:04 
GeneralRe: Reflection-Typecasting on a SortedList / KeyValuePair Pin
StephenGStone28-Sep-09 12:52
StephenGStone28-Sep-09 12:52 
QuestionCan WinForm app use Flash as background? Pin
daveice28-Sep-09 4:13
daveice28-Sep-09 4:13 

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.