N
N
niri22222022-03-27 21:04:55
C++ / C#
niri2222, 2022-03-27 21:04:55

Why is output not working in Winsows Forms?

private void buttonitog_Click(object sender, EventArgs e)
        {
            double h = Convert.ToDouble(textBox1.Text);
            double ves;
            if(comboBox1.SelectedIndex == 0)
            {
                ves = (h - 100) * 1.5;
                 label1..Text = string.Format(ves);
            }
            else if(comboBox1.SelectedIndex == 1)
            {
                ves = (h - 110) * 1.5;
                label1.Text = string.Format(ves);
            }
            
        }

Answer the question

In order to leave comments, you need to log in

2 answer(s)
A
Alexander Ananiev, 2022-03-27
@SaNNy32

Because you need to read the documentation

M
Maxim K, 2022-03-28
@mkvmaks

Label1.. Text two dots.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question