Click here to Skip to main content
15,896,526 members
Home / Discussions / C#
   

C#

 
AnswerRe: display folder path in dialog text box Pin
Jun Du10-Jul-06 15:32
Jun Du10-Jul-06 15:32 
JokeRe: display folder path in dialog text box Pin
Nader Elshehabi10-Jul-06 16:20
Nader Elshehabi10-Jul-06 16:20 
AnswerRe: display folder path in dialog text box Pin
Josh Smith10-Jul-06 10:37
Josh Smith10-Jul-06 10:37 
QuestionDataset copy Pin
Small Rat10-Jul-06 8:36
Small Rat10-Jul-06 8:36 
AnswerRe: Dataset copy Pin
Josh Smith10-Jul-06 8:40
Josh Smith10-Jul-06 8:40 
QuestionCalcBalance does not exist in the current context Pin
Skanless10-Jul-06 7:09
Skanless10-Jul-06 7:09 
AnswerRe: CalcBalance does not exist in the current context Pin
Robert Rohde10-Jul-06 7:42
Robert Rohde10-Jul-06 7:42 
AnswerRe: CalcBalance does not exist in the current context Pin
LongRange.Shooter10-Jul-06 8:26
LongRange.Shooter10-Jul-06 8:26 
protected void Button1_Click(object sender, EventArgs e)
{
     Label6.Text = "Final Balance: $" + 
       CalcBalance(Convert.ToInt32(TextBox1.Text),
       ^^^^^^^^^^^ -- LOOK AT WHAT YOU TYPED HERE  :~ 
      (Convert.ToInt32(TextBox2.Text) / 100),
       Convert.ToInt32(TextBox3.Text),
       Convert.ToInt16(DropDownList1.SelectedItem.Value)).ToString();
}

private string CalculateBalance(int Principal, double Rate, int Years, int Period)
                   ^^^^^ - NOW LOOK AT WHAT YOU TYPED HERE :omg:
{
       double result;
       double NumToBeRaised = (1 + Rate / Period);
       result = Principal * System.Math.Pow(NumToBeRaised, (Years * Period));
       return (result.ToString("C"));
}

AnswerRe: CalcBalance does not exist in the current context Pin
wasife10-Jul-06 8:28
wasife10-Jul-06 8:28 
GeneralRe: CalcBalance does not exist in the current context Pin
Josh Smith10-Jul-06 8:37
Josh Smith10-Jul-06 8:37 
AnswerRe: CalcBalance does not exist in the current context Pin
Skanless10-Jul-06 16:37
Skanless10-Jul-06 16:37 
GeneralRe: CalcBalance does not exist in the current context Pin
J4amieC10-Jul-06 21:57
J4amieC10-Jul-06 21:57 
QuestionShow the "video capture filter " form in c# Pin
davilovick10-Jul-06 6:54
davilovick10-Jul-06 6:54 
AnswerRe: Show the "video capture filter " form in c# Pin
LongRange.Shooter10-Jul-06 8:21
LongRange.Shooter10-Jul-06 8:21 
JokeRe: Show the "video capture filter " form in c# Pin
Malcolm Smart10-Jul-06 20:53
Malcolm Smart10-Jul-06 20:53 
QuestionOdbcCommand not taking Pin
HahnTech10-Jul-06 6:21
HahnTech10-Jul-06 6:21 
AnswerRe: OdbcCommand not taking Pin
Not Active10-Jul-06 6:50
mentorNot Active10-Jul-06 6:50 
GeneralRe: OdbcCommand not taking Pin
HahnTech10-Jul-06 10:16
HahnTech10-Jul-06 10:16 
GeneralRe: OdbcCommand not taking Pin
Not Active10-Jul-06 11:33
mentorNot Active10-Jul-06 11:33 
GeneralRe: OdbcCommand not taking Pin
HahnTech10-Jul-06 13:23
HahnTech10-Jul-06 13:23 
GeneralRe: OdbcCommand not taking Pin
Colin Angus Mackay10-Jul-06 12:20
Colin Angus Mackay10-Jul-06 12:20 
AnswerRe: OdbcCommand not taking Pin
Guffa10-Jul-06 7:06
Guffa10-Jul-06 7:06 
GeneralRe: OdbcCommand not taking Pin
HahnTech10-Jul-06 10:19
HahnTech10-Jul-06 10:19 
GeneralRe: OdbcCommand not taking Pin
led mike10-Jul-06 10:39
led mike10-Jul-06 10:39 
GeneralRe: OdbcCommand not taking Pin
HahnTech10-Jul-06 11:34
HahnTech10-Jul-06 11:34 

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.