Click here to Skip to main content
15,884,177 members
Home / Discussions / C#
   

C#

 
AnswerRe: Is there any easier way to open Directory for Exploring Pin
alexey N18-Apr-06 22:57
alexey N18-Apr-06 22:57 
GeneralRe: Is there any easier way to open Directory for Exploring Pin
emran83419-Apr-06 13:13
emran83419-Apr-06 13:13 
Questionimage gets distorted after resizing Pin
deepak118-Apr-06 14:34
deepak118-Apr-06 14:34 
AnswerRe: image gets distorted after resizing Pin
Guffa18-Apr-06 21:38
Guffa18-Apr-06 21:38 
QuestionSQL SERVER EXPRESS or Professional Pin
emran83418-Apr-06 14:20
emran83418-Apr-06 14:20 
AnswerRe: SQL SERVER EXPRESS or Professional Pin
Paul Conrad18-Apr-06 17:43
professionalPaul Conrad18-Apr-06 17:43 
AnswerRe: SQL SERVER EXPRESS or Professional Pin
LongRange.Shooter18-Apr-06 17:50
LongRange.Shooter18-Apr-06 17:50 
Questionfraction.... Pin
KORCARI18-Apr-06 13:03
KORCARI18-Apr-06 13:03 
Hi guys.Got a fractional function like the form y=(a0*s+a1*s+a2*s)/(b0*s+b1*s+b2*s).I put (a0,a1,a2)in txtNumer and(b0,b1,b2)in txtDenom like in the code below.What I have to write in txtFunction so I get as result in textbox the function.Or Im in a wrong path??Help please...Cry | :((

private void txtNumer_TextChanged(object sender, EventArgs e)
{
string numerator = String.Empty;

if (txtNumer.Text != String.Empty)
{

//put the text of textbox into a string
string source = txtNumer.Text;

//ndaje tekstin ne copat midis presjeve - per ekte na duhet nje array of strings
//se nuk e dime sa numra kemi shtypur ne tekst
string[] pieces = source.Split(',');
int[] numbers = new Int32[pieces.Length];
//we need an array of int or double to get numbers we put in textbox
//so we can convert them
for (int i = 0; i < pieces.Length; i++)
{
numbers[i] = System.Convert.ToInt32(pieces[i]);

}
}
}


private void txtDenom_TextChanged(object sender, EventArgs e)
{
string denominator = String.Empty;

if (txtDenom.Text != String.Empty)
{

//put the text of textbox into a string
string source = txtDenom.Text;

string[] pieces = source.Split(',');
int[] numbers = new Int32[pieces.Length];
///we need an array of int or double to get numbers we put in textbox
//so we can convert them and put them in output textbox
for (int i = 0; i < pieces.Length; i++)
{
numbers[i] = System.Convert.ToInt32(pieces[i]);

}
}

}

private void txtFunction_TextChanged(object sender, EventArgs e)
{

}
}
QuestionIntuit's QuickBooks SDK Pin
Michael A. Barnhart18-Apr-06 12:49
Michael A. Barnhart18-Apr-06 12:49 
QuestionSQL server dynamic connection Pin
namiiiii18-Apr-06 11:54
namiiiii18-Apr-06 11:54 
AnswerRe: SQL server dynamic connection Pin
LongRange.Shooter18-Apr-06 18:13
LongRange.Shooter18-Apr-06 18:13 
GeneralRe: SQL server dynamic connection Pin
namiiiii18-Apr-06 20:49
namiiiii18-Apr-06 20:49 
GeneralRe: SQL server dynamic connection Pin
LongRange.Shooter19-Apr-06 2:36
LongRange.Shooter19-Apr-06 2:36 
GeneralRe: SQL server dynamic connection Pin
namiiiii19-Apr-06 8:56
namiiiii19-Apr-06 8:56 
GeneralRe: SQL server dynamic connection Pin
LongRange.Shooter20-Apr-06 6:51
LongRange.Shooter20-Apr-06 6:51 
Questioncant add a refference to the directx libreries Pin
yossi198118-Apr-06 11:48
yossi198118-Apr-06 11:48 
AnswerRe: cant add a refference to the directx libreries Pin
LongRange.Shooter19-Apr-06 2:56
LongRange.Shooter19-Apr-06 2:56 
QuestionProcessing Registered Windows Messages Pin
Steve Harding18-Apr-06 11:24
Steve Harding18-Apr-06 11:24 
QuestionCasting Problem Pin
danchester18-Apr-06 9:47
danchester18-Apr-06 9:47 
AnswerRe: Casting Problem Pin
Guffa18-Apr-06 9:57
Guffa18-Apr-06 9:57 
Question"Value does not fall within the expected range" Pin
ahchoo18-Apr-06 7:10
ahchoo18-Apr-06 7:10 
AnswerRe: "Value does not fall within the expected range" Pin
LongRange.Shooter18-Apr-06 11:17
LongRange.Shooter18-Apr-06 11:17 
QuestionMessage="Value does not fall within the expected range." Pin
ahchoo18-Apr-06 7:07
ahchoo18-Apr-06 7:07 
AnswerRe: Message="Value does not fall within the expected range." Pin
Judah Gabriel Himango18-Apr-06 8:01
sponsorJudah Gabriel Himango18-Apr-06 8:01 
AnswerRe: Message="Value does not fall within the expected range." Pin
ahchoo18-Apr-06 8:26
ahchoo18-Apr-06 8:26 

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.