Quantcast
Channel: C#nedir?com Forum
Viewing all articles
Browse latest Browse all 613

C# : Metot'da textbox'a veri yazma problemi

$
0
0
Author: met88
Subject: Metot'da textbox'a veri yazma problemi
Posted: 07 Mart 2021 at 20:46

MErhaba aynı sorunu bende yaşıyorum ir türlü çözemedim ne yapmalıyım küçük bir örnekle gösterebilirmisiniz?


        public void Event(string address, string state)
        {



            decimal temp = (decimal)_connection.FromDataPoint("9.001", state);



            if (address == "5/0/7")
            {
                decimal set_temp = (decimal)_connection.FromDataPoint("9.001", state);
                MessageBox.Show("Güncellenen Durum" + address + "   " + set_temp);
               

                return;

            }
            if (address == "5/0/0")
            {
                decimal current_temp = (decimal)_connection.FromDataPoint("9.001", state);
                MessageBox.Show("Güncellenen Durum" + address + "   " + current_temp);
                return;
            }


        }

Viewing all articles
Browse latest Browse all 613

Trending Articles