Click here to Skip to main content
15,891,691 members
Home / Discussions / C#
   

C#

 
AnswerRe: How to Get Position of current row in Dataset ? Pin
Judah Gabriel Himango15-Nov-06 11:51
sponsorJudah Gabriel Himango15-Nov-06 11:51 
QuestionHow can I change the font for the tooltip on DataGridView? Pin
smcneese15-Nov-06 9:59
smcneese15-Nov-06 9:59 
AnswerRe: How can I change the font for the tooltip on DataGridView? Pin
saini4828-Oct-10 20:09
saini4828-Oct-10 20:09 
QuestionWeird C# Problem Pin
Mary Parkhouse15-Nov-06 9:21
Mary Parkhouse15-Nov-06 9:21 
AnswerRe: Weird C# Problem Pin
Mary Parkhouse15-Nov-06 9:36
Mary Parkhouse15-Nov-06 9:36 
GeneralRe: Weird C# Problem Pin
Ed.Poore15-Nov-06 9:54
Ed.Poore15-Nov-06 9:54 
Questionhow to solve A/B using DNA computing Pin
suma1238215-Nov-06 9:05
suma1238215-Nov-06 9:05 
AnswerRe: how to solve A/B using DNA computing Pin
Dan Neely15-Nov-06 10:25
Dan Neely15-Nov-06 10:25 
bool isA = false;
bool isB = false;
foreach (chromosome c in theCell)
  foreach (gene g in c)
  {
    if (g == KnownGenes.BloodTypes.A)
      isA = true;
    if (g == KnownGenes.BloodTypes.B)
      isB = true;
  }

if (isA && isB)
   printf("type AB");
else if (isA)
   printf("type A");
else if ( isB)
   printf("type B");
else    printf("type O");




--
Rules of thumb should not be taken for the whole hand.

GeneralRe: how to solve A/B using DNA computing Pin
suma1238215-Nov-06 10:49
suma1238215-Nov-06 10:49 
GeneralRe: how to solve A/B using DNA computing Pin
Dan Neely15-Nov-06 10:58
Dan Neely15-Nov-06 10:58 
GeneralRe: how to solve A/B using DNA computing Pin
suma1238215-Nov-06 11:14
suma1238215-Nov-06 11:14 
Questioncalling a parent's form method from a child form Pin
rzvme15-Nov-06 8:16
rzvme15-Nov-06 8:16 
AnswerRe: calling a parent's form method from a child form Pin
Pete O'Hanlon15-Nov-06 8:47
mvePete O'Hanlon15-Nov-06 8:47 
AnswerRe: calling a parent's form method from a child form Pin
tgrt15-Nov-06 16:16
tgrt15-Nov-06 16:16 
QuestionStatus Of DataReader ? Pin
Raghu Nandan15-Nov-06 7:46
Raghu Nandan15-Nov-06 7:46 
AnswerRe: Status Of DataReader ? Pin
ednrgc15-Nov-06 7:56
ednrgc15-Nov-06 7:56 
QuestionHow to read a textfile character by character in C# Pin
Vijay Mesa15-Nov-06 6:40
Vijay Mesa15-Nov-06 6:40 
AnswerRe: How to read a textfile character by character in C# Pin
Judah Gabriel Himango15-Nov-06 11:54
sponsorJudah Gabriel Himango15-Nov-06 11:54 
QuestiontreeView and contextMenu Pin
h@s@n15-Nov-06 6:19
h@s@n15-Nov-06 6:19 
AnswerRe: treeView and contextMenu Pin
Wjousts15-Nov-06 6:33
Wjousts15-Nov-06 6:33 
GeneralRe: treeView and contextMenu Pin
h@s@n15-Nov-06 7:51
h@s@n15-Nov-06 7:51 
AnswerRe: treeView and contextMenu Pin
Scott Dorman15-Nov-06 10:24
professionalScott Dorman15-Nov-06 10:24 
QuestionMulti-Language Implementation Pin
Syed Shahid Hussain15-Nov-06 6:09
Syed Shahid Hussain15-Nov-06 6:09 
QuestionString to Int Pin
Blekk15-Nov-06 6:00
Blekk15-Nov-06 6:00 
AnswerRe: String to Int Pin
Stefan Troschuetz15-Nov-06 6:03
Stefan Troschuetz15-Nov-06 6:03 

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.