Register    Login
 

OPC Professionals
At Your Disposal

 
Home
 
Services

Got OPC project?
Need training or consulting?
Contact Us!

 
News and Announcements
QuickOPC-UA Released - Friday, December 09, 2011

We are releasing a brand new product today, QuickOPC-UA. Rapid client development for OPC Unified Architecture finally becomes a reality. QuickOPC-UA hides the complexities of OPC UA and allows the developer to focus on the application logic.

 
OPC Labs Sponsor OPC Day Benelux 2011 - Tuesday, November 15, 2011

The purpose of the event is to show advanced concepts of OPC UA, cross the bridge between production control systems and business information systems, and explore new application fields for OPC UA.

 read more ...
     
 
Welcome to OPC Labs

OPC Labs, an independent software vendor, develop advanced software based on OPC technology. We provide commercial off-the-shelf automation software, as well as custom programming services and consulting. OPC Labs have developed multiple custom OPC servers for complex protocols, custom clients, and combined client-server tools with computational capabilities. Our flag product, QuickOPC, is a set of OPC client components and toolkits allowing rapid application development using wide range of programming tools and languages.

The company is a voting member of OPC Foundation, and participates actively in its activities. We have special dedication to interoperability, and achieve the highest interoperability rankings. Our vision is to deliver smart, reliable and easy-to-use OPC applications and components: precisely those that you were missing on the market.

About OPC...

 
Services in OPC
  • Server and client development
  • Consulting
  • Custom solutions
  • Trainings
 
Featured Products

QuickOPC is a radically new approach to access OPC data on Microsoft Windows platforms. Forget pages of complicated code and get results with a few lines of code using a programming tool and language of your choice. 

  • New product: QuickOPC-UA natively connects to OPC Universal Architecture servers.
  • New: QuickOPC.NET now supports 64-bit development.
  • New: QuickOPC can now connect to OPC UA (Universal Architecture) servers.
  • New: QuickOPC now allows development of OPC Alarms and Events clients.
  • New: QuickOPC.NET now fully supports Visual Studio 2010, and .NET Framework 4.
 
Simple QuickOPC Example in C# Minimize

The code below (in C#) reads and displays an item value, using QuickOPC.NET:
// Read item value and display it in a message box
MessageBox.Show(EasyDAClient.DefaultInstance.ReadItemValue("", "OPCLabs.KitServer.2",
    
"Demo.Single").ToString());

The code below subscribes to changes of an item, and displays the value with each change:
// The callback is a lambda expression that displays the value
EasyDAClient.DefaultInstance.SubscribeItem(
    "", "OPCLabs.KitServer.2", "Demo.Single", 1000,
    (_, args) => Console.WriteLine(args.Vtq.Value));

No other product can do this in such a clear and concise code, in a single statement! 

The same code simplicity is maintained in other programming languages. Here are the corresponding examples in Visual Basic (VB.NET).

 
 
 
 
 
 
Home|Services|Products|Purchase|Downloads|Support|Resources|Company|Contact
Copyright 2007-2011 by OPC Labs Terms Of Use Privacy Statement January 27, 2012