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

C#

 
AnswerRe: Error when importing a class dll Pin
Richard MacCutchan4-Aug-21 1:31
mveRichard MacCutchan4-Aug-21 1:31 
GeneralRe: Error when importing a class dll Pin
Richard Andrew x644-Aug-21 7:29
professionalRichard Andrew x644-Aug-21 7:29 
GeneralRe: Error when importing a class dll Pin
Richard MacCutchan4-Aug-21 7:32
mveRichard MacCutchan4-Aug-21 7:32 
GeneralRe: Error when importing a class dll Pin
Bohdan Stupak6-Aug-21 5:06
professionalBohdan Stupak6-Aug-21 5:06 
AnswerRe: Error when importing a class dll Pin
BillWoodruff8-Aug-21 20:30
professionalBillWoodruff8-Aug-21 20:30 
SuggestionRe: Error when importing a class dll Pin
Richard Deeming8-Aug-21 21:20
mveRichard Deeming8-Aug-21 21:20 
GeneralRe: Error when importing a class dll Pin
BillWoodruff8-Aug-21 23:28
professionalBillWoodruff8-Aug-21 23:28 
QuestionFloating point conversion with error Pin
Ismael Oliveira 20211-Aug-21 13:14
Ismael Oliveira 20211-Aug-21 13:14 
Hi.
I use C# in Visual Studio and SQL Server. In my form I have a label that receives the name of a bank and a Textbox that must be filed with the bank balance. This couple repeats for the number of bank accounts of the client. After I retrieve the balances, I use the following snipet:
            if (TabSaldo.Rows.Count > 0)
            {
                for (i = 0; i < Nbancos; i++)
                {
                    foreach (Control c1 in Gb_Bancos.Controls)
                    {
                        if (c1.Name.Contains("Lb_Banco" + (i + 1).ToString()))
                            c1.Text = LinhaSaldo[i].ItemArray[1].ToString();

                        if (c1.Name.Contains("Tb_Banco" + (i + 1).ToString()))
                        {
                            c1.Text = LinhaSaldo[i].ItemArray[2].ToString();
                            TotalBancos += float.Parse(LinhaSaldo[i].ItemArray[2].ToString()) / 100;
                        }
                    }
                }
            }
It's working fine, but when I make the conversion from string to float (line starting with (TotalBancos +=) the conversion ignores the decimal point. Example: if the balance is 113,54 it sums 11354. As you see, I had to include a division by 100, for it  to work. Please does anyone know what is wrong here?
Thanks.

AnswerRe: Floating point conversion with error Pin
OriginalGriff1-Aug-21 19:12
mveOriginalGriff1-Aug-21 19:12 
GeneralRe: Floating point conversion with error Pin
Ismael Oliveira 20212-Aug-21 15:45
Ismael Oliveira 20212-Aug-21 15:45 
AnswerRe: Floating point conversion with error Pin
Richard MacCutchan1-Aug-21 21:51
mveRichard MacCutchan1-Aug-21 21:51 
GeneralRe: Floating point conversion with error Pin
Ismael Oliveira 20212-Aug-21 15:59
Ismael Oliveira 20212-Aug-21 15:59 
AnswerRe: Floating point conversion with error Pin
jsc422-Aug-21 1:21
professionaljsc422-Aug-21 1:21 
GeneralRe: Floating point conversion with error Pin
Ismael Oliveira 20212-Aug-21 15:58
Ismael Oliveira 20212-Aug-21 15:58 
QuestionMake a control invisible Pin
Ismael Oliveira 202131-Jul-21 14:56
Ismael Oliveira 202131-Jul-21 14:56 
AnswerRe: Make a control invisible Pin
Gerry Schmitz31-Jul-21 17:03
mveGerry Schmitz31-Jul-21 17:03 
AnswerRe: Make a control invisible Pin
OriginalGriff31-Jul-21 19:19
mveOriginalGriff31-Jul-21 19:19 
GeneralRe: Make a control invisible Pin
Ismael Oliveira 20211-Aug-21 12:57
Ismael Oliveira 20211-Aug-21 12:57 
AnswerRe: Make a control invisible Pin
Mycroft Holmes1-Aug-21 12:17
professionalMycroft Holmes1-Aug-21 12:17 
GeneralRe: Make a control invisible Pin
Gerry Schmitz2-Aug-21 7:45
mveGerry Schmitz2-Aug-21 7:45 
GeneralRe: Make a control invisible Pin
Mycroft Holmes2-Aug-21 13:52
professionalMycroft Holmes2-Aug-21 13:52 
GeneralRe: Make a control invisible Pin
BillWoodruff20-Aug-21 6:50
professionalBillWoodruff20-Aug-21 6:50 
QuestionError handling when using Invoke method Pin
Alex Dunlop31-Jul-21 5:49
Alex Dunlop31-Jul-21 5:49 
AnswerRe: Error handling when using Invoke method Pin
Richard MacCutchan31-Jul-21 21:04
mveRichard MacCutchan31-Jul-21 21:04 
QuestionHow to pass a variable inside Try{} to outside of it? Pin
Alex Dunlop30-Jul-21 23:05
Alex Dunlop30-Jul-21 23:05 

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.