Forum Replies Created
-
AuthorPosts
-
MikhailModeratorHi,
To debus a DLL, you need to attach to the process that uses the DLL. In case of drivers, attach debugger to ScadaComm.exe
February 10, 2021 at 2:17 pm in reply to: Cannot see installed schemes extra components module #8281
MikhailModeratorHello,
Probably the access rights return to defaults when you upload the project. I suggest editing web app settings via XML file in Administrator. In the future all settings will be edited using Administrator UI.
MikhailModeratorHi,
You should set
~/View.aspx?viewID=33~ means root.
February 9, 2021 at 1:13 pm in reply to: push data to third-party station or another rapid scada station #8277
MikhailModeratorThe latest version of Rapid Gate includes user interface. If needed, I can help to fix related issues.
MikhailModeratorHi,
1. You need to unblock KpTelegram.dll
2. To open communication line log, click the Line Stats node and then select Line Log. All Communicator log files are located in C:\SCADA\ScadaComm\LogFebruary 8, 2021 at 1:55 pm in reply to: push data to third-party station or another rapid scada station #8273
MikhailModeratorFor what module do you need the utility?
MikhailModeratorAlso you can find a computer code in the communication line log.
MikhailModeratorHi,
To restart the Communicator service, in Administrator click the Instance status button on the main toolbar, and then click the Restart button.
MikhailModeratorHello,
Please provide a screenshot of the Output channels table.February 8, 2021 at 1:15 pm in reply to: push data to third-party station or another rapid scada station #8269
MikhailModeratorHi,
This app works as a console application. Start command prompt cmd.exe then execute EncryptPassword.exeFebruary 7, 2021 at 6:52 am in reply to: push data to third-party station or another rapid scada station #8264
MikhailModeratorHi,
EncryptPassword
MikhailModeratorThanks. Such kind of formula works for input channel, but not for the formula table.
Formula for a channel:
EncodeAscii(Cnl < 2 ? "Running" : "Not Running")Formula for the Formulas table:
public double MyFunc() { return EncodeAscii(Cnl < 2 ? "Running" : "Not Running"); }
MikhailModeratorIn case you need to calculate a difference, change the formula:
SetVal(102, Val(102) - Val(101))-
This reply was modified 4 years, 11 months ago by
Mikhail.
MikhailModeratorHi,
I think, you don’t need Auto Control Module for this purpose.
Create an output channel, and define this channel number for a button.
When button clicked, a command is sent, and a formula of the output channel is calculated.The formula may be like this:
SetVal(102, Val(101))
where 101 is the input channel you need to save
102 is the input channel of the calculated real type that stores the saved value. -
This reply was modified 4 years, 11 months ago by
-
AuthorPosts