Click here to Skip to main content
15,897,518 members
Home / Discussions / C#
   

C#

 
GeneralRe: How to set JIT type? Pin
Dragonfly_Lee31-Jan-09 22:41
Dragonfly_Lee31-Jan-09 22:41 
AnswerRe: How to set JIT type? Pin
Eddy Vluggen31-Jan-09 23:20
professionalEddy Vluggen31-Jan-09 23:20 
GeneralRe: How to set JIT type? Pin
Dragonfly_Lee1-Feb-09 0:54
Dragonfly_Lee1-Feb-09 0:54 
GeneralRe: How to set JIT type? Pin
Eddy Vluggen1-Feb-09 7:36
professionalEddy Vluggen1-Feb-09 7:36 
GeneralRe: How to set JIT type? Pin
Dragonfly_Lee1-Feb-09 18:19
Dragonfly_Lee1-Feb-09 18:19 
QuestionProblem of Fonts When Export Crystal Report in PDF PinPopular
Wlink31-Jan-09 17:59
Wlink31-Jan-09 17:59 
QuestionPythagorean triplet Pin
Matthew Hazlett31-Jan-09 17:48
Matthew Hazlett31-Jan-09 17:48 
AnswerRe: Pythagorean triplet Pin
Matthew Hazlett31-Jan-09 17:58
Matthew Hazlett31-Jan-09 17:58 
Heres the code if you want to see how I did it:

int objectNum = 1000;

for (int counterOne = 1; counterOne < objectNum; counterOne++)
{
    for (int counterTwo = 1; counterTwo < objectNum; counterTwo++)
    {
        double a = Math.Pow(counterOne, 2);
        double b = Math.Pow(counterTwo, 2);
        double c = Math.Sqrt(a + b);

        if (Math.Truncate(c) == c)
            if (counterOne + counterTwo + c == (double)objectNum)
                Console.WriteLine("{0}, {1}, {2}", counterOne, counterTwo, c);
    }
}


Matthew Hazlett
Fighting the good fight for web usability.

AnswerRe: Pythagorean triplet Pin
Matthew Hazlett31-Jan-09 21:14
Matthew Hazlett31-Jan-09 21:14 
QuestionAutocomplete AJAX Pin
CrimeanTurtle200831-Jan-09 17:05
CrimeanTurtle200831-Jan-09 17:05 
AnswerRe: Autocomplete AJAX Pin
Christian Graus31-Jan-09 22:17
protectorChristian Graus31-Jan-09 22:17 
Questionproblem with list&lt;&gt; Pin
raihansazal31-Jan-09 16:48
raihansazal31-Jan-09 16:48 
AnswerRe: problem with list&lt;&gt; Pin
Dragonfly_Lee31-Jan-09 21:06
Dragonfly_Lee31-Jan-09 21:06 
NewsRe: problem with list&lt;&gt; Pin
raihansazal18-Feb-09 22:10
raihansazal18-Feb-09 22:10 
Questionprintout contents from listview and from textboxes Pin
Najmal31-Jan-09 13:38
Najmal31-Jan-09 13:38 
AnswerRe: printout contents from listview and from textboxes Pin
Christian Graus31-Jan-09 14:06
protectorChristian Graus31-Jan-09 14:06 
GeneralRe: printout contents from listview and from textboxes Pin
Najmal31-Jan-09 14:33
Najmal31-Jan-09 14:33 
Question[Solved]Show two decimal places in DataGridViewTextBoxCell [modified] Pin
Jordanwb31-Jan-09 12:28
Jordanwb31-Jan-09 12:28 
AnswerRe: Show two decimal places in DataGridViewTextBoxCell Pin
Christian Graus31-Jan-09 12:45
protectorChristian Graus31-Jan-09 12:45 
GeneralRe: Show two decimal places in DataGridViewTextBoxCell [modified] Pin
Jordanwb31-Jan-09 12:52
Jordanwb31-Jan-09 12:52 
GeneralRe: Show two decimal places in DataGridViewTextBoxCell Pin
Christian Graus31-Jan-09 13:04
protectorChristian Graus31-Jan-09 13:04 
AnswerRe: Show two decimal places in DataGridViewTextBoxCell Pin
Najmal31-Jan-09 13:27
Najmal31-Jan-09 13:27 
GeneralRe: Show two decimal places in DataGridViewTextBoxCell Pin
Jordanwb31-Jan-09 14:12
Jordanwb31-Jan-09 14:12 
GeneralRe: Show two decimal places in DataGridViewTextBoxCell Pin
Najmal31-Jan-09 14:42
Najmal31-Jan-09 14:42 
GeneralRe: Show two decimal places in DataGridViewTextBoxCell Pin
Jordanwb31-Jan-09 15:43
Jordanwb31-Jan-09 15:43 

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.