Skip to content
| Marketplace
Sign in
Visual Studio>Controls>Modbus/TCP Client Driver for .NET Framework 2.0-4.8 HMI/SCADA
Modbus/TCP Client Driver for .NET Framework 2.0-4.8 HMI/SCADA

Modbus/TCP Client Driver for .NET Framework 2.0-4.8 HMI/SCADA

Automated Solutions, Inc

automatedsolutions.com
|
7,939 installs
| (0) | Free Trial
Modbus/TCP client communications driver for connectivity to Modbus/TCP server devices. Use Visual Studio to build .NET Framework 2.0 - 4.8 HMI, SCADA, etc. apps that run on Windows.
Download

ASComm.NET - Modbus/TCP Client Driver for .NET Framework Developers.

Automated Solutions ASComm.NET is a fully-managed .NET component that delivers communications connectivity between .NET applications and a broad range of industrial devices (PLC, PAC, Instrumentation, etc.) using popular communications protocols.

Visual Studio developers can now quickly and easily build HMI, SCADA, Historian, MES, ERP and other custom applications using ASComm.NET for the communications engine.

All supported protocol drivers are implemented in the ASComm.NET component, providing a single, consistent API regardless of the underlying protocols or hardware devices. Each driver can be licensed individually, so you only pay for the drivers that you are developing with.

Drivers

Drivers available for the following brands/models

  • Allen Bradley ControlLogix, CompactLogix, GuardLogix, Micro800 via Ethernet
  • Allen-Bradley PLC-5, SLC 500, MicroLogix via Ethernet
  • GE/Emerson - Series 90, VersaMax, PACSystems RXi, RX3i, RX7i via Ethernet
  • Modbus/TCP Client via Ethernet
  • Modbus RTU/ASCII master via serial port or Ethernet
  • Siemens S7-1500, 1200, 400, 300, 200 via Ethernet

Features & Benefits

Modbus/TCP Client Driver

  • Does not require Schneider or 3rd party drivers.
  • Does not require OPC
  • Register optimization to minimize transactions
  • Extremely high performance - capable of < 5 mSec transaction time

General

  • Tag database can be configured via code or visual designer
  • Abstract base classes allow you to write generic code that works with all drivers
  • x86, x64, and Any CPU compatible
  • Broad .NET target support including Web, Windows, WPF, console, and service apps.
  • Can be configured programmatically or visually
  • Visually design entire communications setup without writing a single line of code
  • Excel Add-in allows you to quickly and easily populate Excel spreadsheets with no programming.
  • Runs on Linux with Mono framework
  • Synchronous and asynchronous read/write methods
  • Data change notifications
  • Provides common API across all driver classes
  • No limit on number of devices or data points
  • Multi-threaded for high data throughput
  • Includes extensive help system
  • Example applications with VB and C# source code included.
  • Easily connect business systems to factory floor systems.
  • Immediate Internet delivery and online license activation
  • No runtime fees or keys for qualified applications

Product Screenshots

The ASComm.NET Portal application is a convenient way to access ASComm.NET development resources.

ascomm_net_3_10_portal.png

ASComm.NET comes with a variety of Example Applications, C# and VB Example Projects, Excel Add-in, License Manager, Help System, Update Check, and Web resources to help you get going quickly.

Simple Read and Write Example Application

ascomm_net_simple_read_write_mb_client.png

Simple Code Examples

C#

// Declare using statement using MBMaster = AutomatedSolutions.Win.Comm.MB.Master;

// This functions creates all required ASComm objects  
// sets initial properties, performs a write and read,  
// then disposes the ASComm objects  
void SimpleReadAndWrite()  
{  
  // Create a Channel  
  MBMaster.Net.Channel myChannel = new MBMaster.Net.Channel();  

  // Create a device at IP Address 192.168.0.171  
  MBMaster.Device myDevice = new MBMaster.Device("192.168.0.171");  
  // device uses Modicon 5-digit addressing  
  myDevice.AddressType = AddressType.MODICON_5_DIGIT;  

  // Create Group with 500 mSec update rate   
  // and active flag set to false  
  MBMaster.Group myGroup = new MBMaster.Group(false, 500);  

  // Create an item that represents one   
  // holding register at address 40001  
  MBMaster.Item myItem = new MBMaster.Item("40001", 1, TagType.HOLDING_REGISTER);  

  // Add device to channel  
  myChannel.Devices.Add(myDevice);  
  // Add group to device  
  myDevice.Groups.Add(myGroup);  
  // Add item to group  
  myGroup.Items.Add(myItem);  

  //Write one tag  
  try  
  {  
    // Perform a write with value from text box  
    myItem.Write(textBoxItemWrite.Text);  
  }  
  catch (Exception ex)  
  {  
    // Error occurred, implement error handler  
  }  

  // Read one tag  
  try  
  {  
    // Perform a read, save value to text box  
    myItem.Read();  
    textBoxItemRead.Text = myItem.Values[0].ToString();  
  }  
  catch (Exception ex)  
  {  
    // Error occurred, implement error handler  
  }  

  // Dispose channel at application shutdown  
  myChannel.Dispose();  
}

VB

' Declare imports statement  
Imports MBMaster = AutomatedSolutions.Win.Comm.MB.Master  

' This functions creates all required ASComm objects,  
' sets initial properties, performs a write and read,  
' then disposes the ASComm objects  
Private Sub SimpleReadAndWrite()  
  ' Create a Channel  
  Dim myChannel As New MBMaster.Net.Channel()  

  ' Create a Device at IP Address 192.168.0.171  
  Dim myDevice As New MBMaster.Device("192.168.0.171")  
  ' device uses Modicon 5-digit addressing  
  myDevice.AddressType = AddressType.MODICON_5_DIGIT  

  ' Create a Group with 500 mSec update rate   
  ' and active flag set to false.  
  Dim myGroup As New MBMaster.Group(False, 500)  

  ' Create an item that represents one   
  ' holding register at address 40001  
  Dim myItem As New MBMaster.Item("40001", 1, TagType.HOLDING_REGISTER)  

  ' Add device to channel  
  myChannel.Devices.Add(myDevice)  
  ' Add group to device  
  myDevice.Groups.Add(myGroup)  
  ' Add item to group  
  myGroup.Items.Add(myItem)  

  'Write one tag  
  Try  
    ' Perform a write with value from text box  
    myItem.Write(textBoxItemWrite.Text)  
  Catch ex As Exception  
    ' Error occurred, implement error handler  
  End Try  

  ' Read one tag  
  Try  
    ' Perform a read, save value to text box  
    myItem.Read()  
    textBoxItemRead.Text = myItem.Values(0).ToString()  
  Catch ex As Exception  
    ' Error occurred, implement error handler  
  End Try  

  ' Dispose channel at application shutdown  
  myChannel.Dispose()  
End Sub

Related Links

Automated Solutions Website

ASComm.NET Product Page

MB/TCP Client Driver Page

Download 30-day Trial

Revision History

License Agreement

Support Page

Contact

707-578-5882  voice

sales@automatedsolutions.com

https://www.automatedsolutions.com

Company

Automated Solutions develops and sells software products for industrial and process automation. We also provide custom development services using our products for organizations that need custom HMI, SCADA, interface, or logging applications, but are short on development resources.

Our software products do not target specific industries. They are used in diverse industries such as agriculture, automotive, mining, gas, building, construction, food & dairy, beer, wine & spirits, textile, mills, and petroleum. You can even find our software on submarines, in amusement parks, and Internet telescopes.

Founded in 1994, our software products are now used by over 3300 companies globally to build high performance, cost effective HMI, SCADA, machine control, and data logging applications.

Other products and companies referred to herein are trademarks or registered trademarks of their respective companies or mark holders.

  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft