Click here to Skip to main content
15,899,313 members

Comments by Member 13081540 (Top 19 by date)

Member 13081540 1-Jan-21 14:00pm View    
No, I am creating a fake startup services for integration tests
Member 13081540 17-May-17 11:06am View    
It does contain instance of checkout and the checkout location is set in a visible portion of the panel.
Member 13081540 11-May-17 12:27pm View    
Do you mean creating a decimal for example decimal oldValue and then
if (nupWhiteC.Value > oldValue)
{
totalCost = totalCost + 0.50m;
textBox1.Text = totalCost.ToString();
oldValue = nupWhiteC.Value;
}
else
{
totalCost = totalCost - 0.50m;
textBox1.Text = totalCost.ToString();
}
oldValue = nupWhiteC.Value;
Member 13081540 6-May-17 20:41pm View    
Hey, thanks for responding, I fixed the issue. I needed to add super(....) in the constructor.
Member 13081540 6-May-17 18:56pm View    
Whenever I added [i] to the statement. It displayed the right variables from the DVD class but not the variables that I have in Item, it did not set the variables instead it only showed the default variable values of the Item class. Not sure how to do it so that it will display all the values I have putted inside the dvd1/2 objects.