TMS Asyn32 in a console applicationc

I want to use the TVaComm component in a XE7 console application, but if I include VaComm into my uses clause I get a compiler error, as VaComm uses VCL units (Graphics, Controls, Forms, Dialogs).

program Project1;
{$APPTYPE CONSOLE}
{$R *.res}

uses
System.SysUtils, VaComm;

var
MyComm: TVaComm;
...

Is there a solution to use TVaComm in a console application?

Thanks in advance.

Best Regards,

Jürgen

Sorry, it is currently not supported to use TVaComm from a console application.

Please note also that in Windows, for serial communications, Windows sends window notification messages and handling these from console applications is technically not possible.