Sending data by UDP

elfranzen

Registered User.
Local time
Today, 13:30
Joined
Jul 26, 2007
Messages
93
I have searched high and low for sending a simple UDP command. It looks like it might have been possible with older versions of access but the newer version maybe not. Does anyone have any info on sending a simple UDP command via VBA. I just want to take a number from a query and broadcast it to 10.20.20.255 via port 5000. very simple but yet seems impossible.

Thanks
 
Create a batch file with the following and run it from Access. I obtained this snipet from here. Here is an example for creating the bat. It is an unresolved question, but it should still help you out.

Code:
sendip [COLOR=#660033]-p[/COLOR] ipv4 [COLOR=#660033]-is[/COLOR] 192.168.1.81 [COLOR=#660033]-p[/COLOR] udp [COLOR=#660033]-us[/COLOR] [COLOR=#000000]5070[/COLOR] [COLOR=#660033]-ud[/COLOR] [COLOR=#000000]5060[/COLOR] [COLOR=#660033]-d[/COLOR] [COLOR=#FF0000]"Hello"[/COLOR] [COLOR=#660033]-v[/COLOR] 192.168.1.81
 

Users who are viewing this thread

Back
Top Bottom