Kayıtlar

C# VBNET TCP IP server client sample code

 Alttaki linkten tcp ip C# vs2022-2013 örneği indirilebilir: https://drive.google.com/file/d/1RJzR-dzpH-G54dQmL3p2GtPlnuDSdlCc/view?usp=sharing Alttaki linkten tcp ip VBNET örneği indirilebilir: https://drive.google.com/file/d/1R1pXe30dWJv-7NkMaMDgdg5nGDX8R5ul/view?usp=sharing vbnet-vs2022: https://drive.google.com/file/d/1JXATiNj6hti_mS3sRNYekKlKF2xUQ7uQ/view?usp=sharing vbnet butonlu vs 2022: https://drive.google.com/file/d/1OMZhsmMC0ogkDtx0_BJ6R_lqJiAZBlNg/view?usp=sharing

UDP TCP NETWORK ÜRÜNLERİ İÇİN IP GW SM DEĞİŞTİRME PROGRAMI SEDA ELEKTRONİK

Resim
 Seda Elektronik Udp Tcp ürünleri için ip değiştirme programı linkten indirilebilir: https://drive.google.com/file/d/17ujqDIxfcCpjIiNi9PyfP3NNclLcSkHa/view?usp=sharing              

vbnet decimal to binary code

Resim
   Desimal sayıları binary sayıya çeviren vbnet kodu linkten indirilebilir: https://drive.google.com/file/d/0B9F3CyDwz-nISGZIZlpyQXBmOTg/view?usp=sharing&resourcekey=0--JkL9YdSTcpfWzvZ1yfcHw                  

c# decimal to binary code

Resim
 Hex sayıyı binary sayıya çeviren c# vs2022 kodunu drive linkinden indirebilirsiniz: https://drive.google.com/file/d/18I79p-FMkNJ4RM1P01qySQXu_aBuRpsf/view?usp=sharing  namespace WinFormsApp1 {     public partial class Form1 : Form     {         public Form1()         {             InitializeComponent();         }         private void button2_Click(object sender, EventArgs e)         {             MessageBox.Show("Please press the ok key to finish the mathematical operation.");             if (int.TryParse(textBox1.Text, out int decimalNumber))             {                 string binaryNumber = "";                 while (decimalNumber > 0)                 {                     binaryNumber = (decimalNumber % 2) + binaryNumber;                     decimalNumber /= 2;                     textBox2.Text = binaryNumber;                 }             }         }         private void Button1_Click(object sender, EventArgs e)             {             if (int.TryParse(t

c# hex to binary code

Resim
 Hex sayıyı binary sayıya çeviren c# vs2022 kodunu drive linkinden indirebilirsiniz: https://drive.google.com/file/d/1GHZlN6fkNAbPEg9G5QATVK6DDP2DU79a/view?usp=sharing Kod: (C# form uygulaması arayüzüne textbox1 ve textbox2 eklenmesi yeterlidir) namespace hexTObinary {     public partial class Form1 : Form     {         public Form1()         {             InitializeComponent();         }         public static string hex2bin(string value)         {             if (string.IsNullOrEmpty(value))                 return string.Empty;             return Convert.ToString(Convert.ToInt32(value, 16), 2).PadLeft(value.Length * 4, '0');         }         private void textBox1_TextChanged(object sender, EventArgs e)         {             string hexValue = textBox1.Text;             string binaryValue = hex2bin(hexValue);             textBox2.Text = binaryValue;         }     } }        

network io röle kontrol ürünleri test sayfası - Seda Elektronik

Bu sayfada  https://www.sedaelektronik.com/  firmasının TCP-UDP ethernet IO ve röle kontrol ürünlerini test edebilirsiniz. 1. maddede şifreli TCP http röle kartını, 2. maddede UDP + TCP http röle kartını, 3. maddede TCP+UDP röle kartını kontrol edebilirsiniz. 1- Seda Elektronik tarafından geliştirilen network ürünleri için test ip sayfasına alttaki linkten ulaşabilirsiniz. Şifre girişli ürün HTTP TCP bağlantı protokolüne sahiptir. Network ürünlerinin şifresiz girişli ve telnet kod altyapılı versiyonları da vardır. KULLANICI ADI:   se PAROLA                : demo http://217.131.28.214:3000/admin Parametreler: IPNO/s  : röle ve input durumları sayfası IPNO/3  (NETWORK BUTONU) network bilgileri sayfası IPNO/4  (SYSTEM BUTONU) sistem hızı ve gelen istek sayısı RELAY CONTROL BUTONU röle kontrol sayfası https://www.sedaelektronik.com/ 2- UDP PROTOKOL VE TCP ARAYÜZE SAHİP ÜRÜN SAYFASI: Bu ürünün port numarası 250 dir. TCP bağlantı için doğrudan aşağıdaki ip numarasına herhangi bir web brows

phyton http get request sample code application

Resim
  Phyton http request uygulama örneği aşağıdaki linkten indirilebilir. Bir ip numarasına veya web adresine istek gönderir: ****RASPBERRY Pİ PHYTON PROGRAMLARI AŞAĞIDAKİ LİNKTEN İNDİRİLEBİLİR*** https://drive.google.com/drive/folders/1BYQnBMTUhgyY0cUtd_xuZcvbBap4rFst?usp=sharing

vbnet http get request sample code visual studio application

Resim
  Visual studio vbnet 2022 request uygulama örneği aşağıdaki linkten indirilebilir. Bir ip numarasına veya web adresine istek gönderir: http get request VBNET kodu: https://drive.google.com/file/d/1ki3vCOrZ_n0LLxEt8Czi3NzOeyboTsxB/view?usp=sharing

c# http get request sample code visual studio application

Resim
Visual studio 2022 ve 2013 c# request uygulama örneği aşağıdaki linkten indirilebilir. Bir ip numarasına veya web adresine istek gönderir: http get request c# kodu vs2022: https://drive.google.com/file/d/1arVr7kTQy5VzfYzQj25wAnH5sXf1CjRs/view?usp=sharing