News:

Welcome on our forum!

Main Menu
Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - Arthur Grasin

#1
Hello,

You can use the SQL Database Pro plugin and execute the UPDATE SQL statement.
#2
Please, submit a ticket https://support.aggsoft.com, and we'll schedule a remote support session.
#3
Hi,

Our software can only receive data from one COM port, transform it and send a new data packet to another COM port. You can use our Virtual Null Modem to create additional COM ports.

Tutorial:
https://www.aggsoft.com/asdl-scale-data-filter.htm

Data flow:
Software [Sends balance Command] -> Virtual COM1 -> Virtual COM2 -> Data Logger (Configuration 1) -> Redirection -> Real COM port -> Balance

Balance -> Real COM port -> Data Logger (Configuration 2) -> Redirection -> Virtual COM2 - Virtual COM1 - Software
#4
What device does output this data? We can prepare a custom parser module for it.

Also, I can connect to your computer remotely and help with setup.

Please, open a ticket at https://support.aggsoft.com/, and we'll schedule an appropriate time.
#5
Hello,

If you want to extract the entire row and send it to Excel, you do not need parsing using delimiters. You should only specify line ending characters.

Please, look here:
https://www.aggsoft.com/asdl-barcode-data-logger.htm

If you want to split data to separate columns, you may do the following:

Date, Time, Room - you may extract this data from a fixed position using the ASCII Data Parser plugin.
Alarm type - use the following regular expression in ASCII Data Parser

[\d\.]{3,}\ {2,}(.+?)\ {2}

Call type - use the following regular expression

\ {2,}(.+)$

Maybe, fields in your data are delimited by the TAB ASCII character. Then you may extract data using it.
#6
Data loggers and plug-ins / Re: COM Port is closed
November 19, 2020, 06:58:29 AM
Sorry, but I cannot answer precisely. It is necessary to try.
#7
Data loggers and plug-ins / Re: COM Port is closed
November 19, 2020, 04:28:30 AM
Unfortunately, our software cannot help in the Spy mode.

Is it possible you can use a special monitor cable?
https://www.aggsoft.com/rs232-pinout-cable/serial-port-monitor-cable.htm

But in this case, you need two COM ports on your computer (one for a printer and another for captured data).
#8
Data loggers and plug-ins / Re: COM Port is closed
November 18, 2020, 11:07:14 AM
Hello,

If the COM port is already used for a printer, our software cannot connect to it. You may try the "Spy" mode, but I'm not sure.
#9
The program saves all settings in the Windows registry.
HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\AGG Software\Advanced Serial Port Monitor
you may export this node and import it on another computer.
#10
Can I connect to your computer remotely?

If yes, please open a ticket here:

https://support.aggsoft.com/
#11
In this case, you should create 10 configurations.

1. In the first configuration, you should enable and configure the Aggregator plugin
1.1 Enable and configure the Excel data export plugin.

2. In other configurations, you should redirect data to the first configuration.
#12
I'm not sure that it is a good idea to consolidate data from 10 data sources. If one data source pauses, all other data streams will be paused too.

I think you need one configuration, but write data to a new row in Excel for each data packet.
#13
Hello,

Yes, the logger can receive data from multiple data sources. Did you create a separate configuration for each data source in our logger?
#14
Data loggers and plug-ins / Re: leading zeros
August 25, 2020, 03:45:16 AM
You should use it in the ASCII Data Parser plugin.
#15
Data loggers and plug-ins / Re: leading zeros
August 22, 2020, 06:16:33 AM
Try the following:

Sart signature: ?
End signature: @
Parse full data packet: yes

The regular expression for the first variable:

\?0*([\d\-]+)\d{3}\ {3}

The regular expression for the second variable:

(\d{3})\ {3}

The regular expression for the 3rd variable:

(\d+)\@