[INDENT]Sub Class_Globals[/INDENT]
[INDENT] Private fx As JFX[/INDENT]
[INDENT] [/INDENT]
[INDENT] Private udp As UDPSocket[/INDENT]
[INDENT]End Sub[/INDENT]
[INDENT][/INDENT]
[INDENT]'Initializes the object. You can add parameters to this method if needed.[/INDENT]
[INDENT]Public Sub Initialize[/INDENT]
[INDENT] udp.Initialize("event",6454,1500)[/INDENT]
[INDENT]End Sub[/INDENT]
it connect the udp socket to one interface, i cannot choice on which interface
Hi I'm building an application that works on a computer with two network adapters. Each network adapter has its own IP, the getway is the same. The first adapter is used to connect to the Oracle server. Another network adapter communicates with the device via the UDP port. How can I define in...