More Than One Operator "+" Matches These Operands
-
Hi, I have a small project in vc++ 2015. While I calculate the total, I get this error. Is it possible to solve this error. Any Kind helps.
private: static System::Decimal MyNumber2;
private: static System::Decimal DJSubTot = 0;
private: static System::Decimal DJVATTot = 0;
private: static System::Decimal DJFreightTot = 0;MyNumber2 = 0;
if(Decimal::TryParse(textBox8->Text->Trim(), MyNumber2)){
DJVATTot = MyNumber2;
}
MyNumber2 = 0;
if (Decimal::TryParse(textBox9->Text->Trim(), MyNumber2)) {
if (MyNumber2>0) {
DJFreightTot = MyNumber2;
}
}
textBox10->Text = (DJSubTot + DJVATTot + DJFreightTot).ToString();Thanks for the helps
-
Hi, I have a small project in vc++ 2015. While I calculate the total, I get this error. Is it possible to solve this error. Any Kind helps.
private: static System::Decimal MyNumber2;
private: static System::Decimal DJSubTot = 0;
private: static System::Decimal DJVATTot = 0;
private: static System::Decimal DJFreightTot = 0;MyNumber2 = 0;
if(Decimal::TryParse(textBox8->Text->Trim(), MyNumber2)){
DJVATTot = MyNumber2;
}
MyNumber2 = 0;
if (Decimal::TryParse(textBox9->Text->Trim(), MyNumber2)) {
if (MyNumber2>0) {
DJFreightTot = MyNumber2;
}
}
textBox10->Text = (DJSubTot + DJVATTot + DJFreightTot).ToString();Thanks for the helps
-
I don't have C++/CLI, but converting that code to C# it works fine. Where does the error occur?
Thank Richard
textBox10->Text = (DJSubTot + DJVATTot + DJFreightTot).ToString();
The above line Thank Again
-
Thank Richard
textBox10->Text = (DJSubTot + DJVATTot + DJFreightTot).ToString();
The above line Thank Again
-
I have had another look at the documentation and cannot see why the error occurs. As I already mentioned, I do not have C++/CLI (and don't want it) on my system, so cannot test it further.
It's ok Richard, Thank Again for reply The following code clears my error()
textBox10->Text = Convert::ToString(Decimal::Add(Decimal::Add(DJSubTot, DJVATTot), DJFreightTot));