Search results for query: *

  • Users: eawedat
  • Content: Threads
  • Order by date
  1. E

    Getting DataTypeName of each column of table

    Hi there , I have this code : Dim query As String = "show columns from " & table_name & " from " & db_name Dim connection As New MySqlConnection(cons) Dim cmd As New MySqlCommand(query, connection) connection.Open() Dim reader As MySqlDataReader...
  2. E

    Socket Multiple Connection

    hey all , I wish to send message to multiple computers (LAN network). each computer in lab is running the server except one computer which is the client. problem : once message has been sent to first computer , the client stops to send to other computers. CLIENT : Dim ip As String Dim i As...
  3. E

    WebBrowser Control Delay ?

    hey all, I have this code in VB.NET : Having: 1 TextBox 1 Button with this code: Public Class Form1 Dim m As String() Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click m = TextBox1.Text.Split(Environment.NewLine)...
  4. E

    Question Auto Fill TextBoxes when Paste

    hey all,, I have this picture to be more clear: My idea is when I paste (ctrl+v) for example this number : 4111111111111111 it would automatically paste them in textboxes one by one in order! so txtBox1 will contain : 4111 txtBox2 : 1111 txtBox3 : 1111 txtBox4 : 1111 the automation of...
Back
Top