Search results for query: *

  1. H

    close form from form

    thanks alot worked great
  2. H

    close form from form

    close form from form resolved i have two forms in my project. The first form is form1, and the Second form is form 2 (username and password log in form). When form1 loads it calls form2. but i want it so that if they close form2, it will also close form1.
  3. H

    how to send a file in client/server using socket?

    client: Dim filebuffer As Byte() Dim fileStream As Stream fileStream = File.OpenRead(<file source>) ' Alocate memory space for the file ReDim filebuffer(fileStream.Length) fileStream.Read(filebuffer, 0, fileStream.Length) ' Open a TCP/IP Connection and send the data Dim clientSocket As New...
  4. H

    Multi Threading.......

    Dim incthread As New Thread(AddressOf incomingthread) incthread.Start() and then all you need to do is make a sub called incomingthread in this example
  5. H

    Multi Threading, ??Data Loss??

    I just have a simple question. If i am having multiple thread running on a program. and one thread B is being passed data by thread A, but thread A is moving quicker then thread B, will thread A slow down and give thread B some time, or what will hapen to that data between thread A and thread B.
  6. H

    Instant messenger IP Help

    I have been trying to create an instant messenger using a UdpClient. i just dimed the variable udpclient as new udpclient. Then i said udpclient.connect(<ipaddress>,<port>) and this seems to work fine. But if i want to send the message to somebody inside of a network, how do i do that bacause i...
Back
Top