Kayıtlar

Temmuz, 2023 tarihine ait yayınlar gösteriliyor

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İ ve DMX512 KONVERTÖR İÇİ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. Program dmx512 konvertör ip numarası değiştirme ve dmx512 masasını açıp kapatmak içinde kullanılabilir: 2024 verisyon: https://www.mediafire.com/file/zb7952rtf1eseh5/IP-CHANGE-VBNET-UDP-VS2022-anka%25282%2529.zip/file Alternatif link: https://drive.google.com/file/d/18_NWqL5XouQNCWr6EGUhydMkR3w4s61C/view?usp=sharing 2023 versiyon: https://www.mediafire.com/file/6hmhrtcizv374vl/64-32-bit-udp-ip-de%25C4%259Fi%25C5%259Ftirme-program%25C4%25B1.zip/file  Alternatif link: 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;         }     } }