Search results for query: *

  1. 2

    Simple UDP sockets question [2005]

    Im trying to send one single UDP packet to a bf2 server, and get a single packet response back. Unfortunately, I cannot find any info or help on the topic!Imports System.Net Public Class UDPWinsock Dim ServerIP As String Public Property Server() As String Get...
  2. 2

    any function to find maximum number?

    Not sure if you want to use a loop, but this is how Id do it Dim bStr As New Specialized.StringCollection Dim MaxValue As Int32 bStr.AddRange("10, 20, 56, 87, 54, 1, 2, 14, 22".Split(","c)) For Each t As Int32 In bStr If t > MaxValue Then...
  3. 2

    Working with a treeview..(1st time)

    That works AMAZING! I love this forum! Is there some way to rep you (like on another vb site) or is my thanks good enough? :D Just an FYI for further info, this is how I finished it: Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick...
  4. 2

    Working with a treeview..(1st time)

    Well for me im just kind of experimenting with the treeview and with the process class, Now it was all working grand until I tried to go 3 nodes in etc etc.. Can anyone help me, I need to have it add all the classes+hwnds of the children into the Classes node of each parent node...
  5. 2

    .IndexOf problem

    Okay, I have the following code: Option Strict On Option Explicit On Imports System.Text Public Class Form1 Delegate Function EnumWindProc( _ ByVal hWnd As Int32, _ ByVal lParam As Int32) As Boolean Delegate Function EnumChildWindProc( _...
Back
Top