List of Contributions

Vu Van

Contact Details

Vu Van


My Content

1 to 20 of 44 total
Posted By Vu Van Aug 22, 2024 11:54:00 AM
Found In Egroup: Advanced Software
\ view thread
Hello community, I would like to show all the emulator output log messages when the app running on a datagrid, i dont know whether these log are realtime messages or be logged to sqlite db. Has anyone tried it yet?
Posted By Vu Van Aug 05, 2024 01:47:41 PM
Found In Egroup: Advanced Software
\ view thread
Sorry for the wrong capture of data logger in my project
Posted By Vu Van Aug 05, 2024 01:46:00 PM
Found In Egroup: Advanced Software
\ view thread
Hi community, I want to use the DataLogger in FT Optix to log PLC Value to the through ODBC. I want to log the value if detect any change in value in 10s compare to the last value, it should be log only 1 row to the DB, else if after 10s and not detected change in value, it shouldn't log to DB. So ...
Posted By Vu Van Jul 22, 2024 04:24:18 AM
Found In Egroup: Advanced Software
\ view thread
I checked the FreaturesDemo2 project, it doesn't contain any example filter the alarm by ActiveState/ConfirmState. Maybe it doesn not support to filter by these properties. But it work normally when i filter by custom property i added in alarm, like Area or Location...
Posted By Vu Van Jun 25, 2024 02:32:00 PM
Found In Egroup: Advanced Software
\ view thread
Hello everyone, I 'm using the AlarmGrid in FTOptix. I create a new type DigitalAlarm base on DigitalAlarm in FTOptix. I can filter the ActiveAlarm using query new propertíe in my DigitalAlarm (type) like Select * From Model Where AlarmType = 100. I would like to filter Alarm by ActiveState or ConfirmedState, ...
Posted By Vu Van Jun 13, 2024 01:10:00 PM
Found In Egroup: Advanced Software
\ view thread
Thank you for you suggestion, but actual my temperature system will expend in the future so i think duplicating the trend panel is not the best option for me.
Posted By Vu Van Jun 13, 2024 01:06:00 PM
Found In Egroup: Advanced Software
\ view thread
To resolve rerendering the trend screen, i just put trend screen into a panel loader or navigation panel, and every time i click button to change the ActiveTrend, i also invoke the method ChangePanelByTabIndex to reopen the Trend screen, so it aslo update the current active pen. Once again, the formatted ...
Posted By Vu Van Jun 13, 2024 11:53:00 AM
Found In Egroup: Advanced Software
\ view thread
Formatted dynamic link is exactly what i need, thank you @AutomateSHANE, but i got a new problem. When i click the button to change the value of ActiveTrend, the Trend does not rerender new pens until i close the Trend screen and open it again, i add the refresh method of Trend, but it does not work, ...
Posted By Vu Van Jun 12, 2024 01:24:00 PM
Found In Egroup: Advanced Software
\ view thread
And i want to format the dynamic link of the pens like string formatter of dynamic link formatter something that i see on netlogic cheatsheet but it using the netlogic. So the dynamic link for the pens would like: /Objects/TempMonitor/Loggers/TANALOG_LOG/VariablesToLog/(0)/LastValue Then i try ...
Posted By Vu Van Jun 12, 2024 01:17:00 PM
Found In Egroup: Advanced Software
\ view thread
Sorry for the confusing question. The path for datalogger is exactly what i want, like i have 20 temperature systems, each system have 4 variables i need to record those are ActValue, SetpointValue, UpperLimit, LowerLimt. So my datalogger will have 20 set of these 4 values. I create a trend screen with ...
Posted By Vu Van Jun 11, 2024 01:45:00 AM
Found In Egroup: Advanced Software
\ view thread
I have a dataloger record the value of 20 temperature sensor, now i want to show a historical trend of pen corresponding to the tempButton i click on, only 1 pen, but not using the pen/enabled. I see that the dynamiclink path like below, and if i can change the Heating_108_UppLimit every time i ...
Posted By Vu Van May 15, 2024 09:35:00 AM
Found In Egroup: Advanced Software
\ view thread
Hello everyone, I'm working around with FTHistorian and System Management Tool, i can log some tags by onchange event or by periodic. Now want to log some tags by condition like when another tags change --> log some tags for me/ or logging tags at certain times of the day? It that supported by ...
Posted By Vu Van May 03, 2024 02:41:00 PM
Found In Egroup: Advanced Software
\ view thread
Oh yeah, now i misunderstood about how round() function work, now i do understand it and it working good in my case. Thanks a lot.
Posted By Vu Van May 03, 2024 06:19:00 AM
Found In Egroup: Advanced Software
\ view thread
I just find out that i can you the conditional converter in my case, it can dynamic link to multiple variables and also point directly to the value of the of rectangle fill color
Posted By Vu Van May 03, 2024 06:14:00 AM
Found In Egroup: Advanced Software
\ view thread
But the color is decided by multiple bool variable l, so i dont think i can you key-value converter, that's reason why i use the expression evaluator
Posted By Vu Van May 02, 2024 08:09:00 PM
Found In Egroup: Advanced Software
\ view thread
I also try with a textbox creating a dynamic link to Fillcolor@Value then type the decimal or hex value of color to the text box, it's wokring good, so i think maybe the expression evaluator cannot point to the Fillcolor@Value.
Posted By Vu Van May 02, 2024 08:02:00 PM
Found In Egroup: Advanced Software
\ view thread
I want to change the color of rectangle in FTOptix using Expression Evaluator, and i see that Fill color (datatype is color) and it return value in hex or decimal, but when i try to assign the result of if clause to the fill color it's not working and return a warining like below. I dont think that the ...
Posted By Vu Van May 02, 2024 07:47:00 PM
Found In Egroup: Advanced Software
\ view thread
I dont think using round ((0)/1000) + 100 can work in my case, because i want a row is a range of multiple key instead like form 11990 to 12010 then value will be 112, instead of adding about 20 key from 11990 to 12010 with value 112. So i think i will find another way to do it. Thanks.
Posted By Vu Van Apr 24, 2024 11:54:00 PM
Found In Egroup: Advanced Software
\ view thread
Hello everyone, I'm working with key-value converter, in my case at key column, each key is a variabe having a working range (+-10) For ex: myvar= 12000 so: key (11990-12010) -- value:112 Is that possible to do it with key- value converter?
Posted By Vu Van Apr 16, 2024 11:37:00 PM
Found In Egroup: Advanced Software
\ view thread
Thank @AutomateSHANE, Currently i'm trying to design a menu bar in FTOptix, so using the dropdown button reduce a lot of things to me like open/close submenus when i click inside or outside. For the container, poup now will be the best fit with dropdown button, because i have close method which panel ...