List of Contributions

Kzvin

Contact Details

Kzvin


My Content

1 to 20 of 39 total
Posted By Kzvin Dec 04, 2025 09:32:00 AM
Found In Egroup: Advanced Software
\ view thread
Hi is anyone else having this issue? It opens the authentication page and everything, but then in the studio it stays stuck on 'authenticating...' -------------------------------------------
Posted By Kzvin Nov 26, 2025 09:43:25 AM
Found In Egroup: Advanced Software
\ view thread
Hi, I had the same problem. To fix it, I accessed the Optix web server and clicked "Delete application." I deployed the program again and everything was fine! That's works for me. -------------------------------------------
Posted By Kzvin Nov 07, 2025 03:32:22 PM
Found In Egroup: General Discussions
\ view thread
Hi! Hermosillo, Sonora. México 🌮🇲🇽 ------------------------------------------- ...
Posted By Kzvin Oct 29, 2025 12:07:00 PM
Found In Egroup: Advanced Software
\ view thread
Is anyone else having trouble accessing FactoryTalk Hub? -------------------------------------------
Posted By Kzvin Oct 29, 2025 10:42:00 AM
Found In Egroup: Advanced Software
\ view thread
You can do it, but the only reliable method I've found is to place the Panel Loader inside the panel itself. That way, the popup's margins and alignment are calculated relative to the navigation panel rather than the full screen. -------------------------------------------
Posted By Kzvin Oct 29, 2025 10:41:46 AM
Found In Library: Advanced Software
Posted By Kzvin Oct 08, 2025 10:34:51 AM
Found In Egroup: Advanced Software
\ view thread
Hi Could you please confirm if Visual Studio is completely closed while deploying? Sometimes having it open with the project loaded can cause this issue. -------------------------------------------
Posted By Kzvin Oct 02, 2025 01:45:00 PM
Found In Egroup: Advanced Software
\ view thread
Hi, In my Optix project I'm currently using a boolean flag in some places to decide whether I should use RemoteRead() or just take the value already updated from the tag. Is there a built-in way (or a clean pattern) to know if a variable is already being updated by the UI? private static T ObtenerValorRealDelTag ...
Posted By Kzvin Aug 25, 2025 01:58:00 PM
Found In Egroup: Advanced Software
\ view thread
Hi, The only way I found without using C# is to change the locale to Japanese. -------------------------------------------
Posted By Kzvin Jul 23, 2025 10:04:56 AM
Found In Egroup: Advanced Software
\ view thread
Hi, You can use (0:f3). You can see more string formatters here: https://www.rockwellautomation.com/en-hu/docs/factorytalk-optix/1-00/contents-ditamap/using-the-software/converters/string-formatter.html
Posted By Kzvin Jul 22, 2025 10:24:51 AM
Found In Egroup: Advanced Software
\ view thread
Hi Julio, You can create a new style in your stylesheet and then assign it to your TextBox. Here's a quick example: Then assign it to your TextBox: This way, you get a styled box with your text inside, without needing to overlay labels and rectangles.
Posted By Kzvin Jul 10, 2025 02:48:00 PM
Found In Egroup: Advanced Software
\ view thread
Hi, The issue you're encountering is most likely due to the fact that Optix runtime runs on a Linux-based operating system, especially on physical panels. While your code using System.Data.SqlClient.dll works during emulation (which runs on Windows), it fails on the panel because System.Data.SqlClient ...
Posted By Kzvin Jul 04, 2025 10:15:00 AM
Found In Egroup: Advanced Software
\ view thread
Hi, You're right - detecting when the ComboBox opens is not directly possible in FactoryTalk Optix as of now. However, you can use the session type (native or web) to adjust your layout or panel dimensions accordingly. In your project, there's a property you can use: Aliases/(Session)/Session/UI ...
Posted By Kzvin Jul 01, 2025 11:48:00 AM
Found In Egroup: Advanced Software
\ view thread
Hi, The issue you're encountering is because the variable you're referencing in your SetDynamicLink is tied to a specific instance of the toggle button, which exists independently in each session. In FT Optix, objects like buttons (and their variables such as "Active") can have separate instances ...
Posted By Kzvin Jul 01, 2025 11:39:00 AM
Found In Egroup: Advanced Software
\ view thread
Hi, You can use this example. If you want to use a custom object, you need to change the type inside the <>. // Create a Led var myObject = InformationModel.Make ("myLabel"); // Set Color to any valid RGB color var myCustomColor = new Color(0xff, 0xaa, 0xbb, 0xcc); // Set the Led color to the ...
Posted By Kzvin Jun 27, 2025 10:07:00 AM
Found In Egroup: Advanced Software
\ view thread
Hi, Retzlaff You're right - by default, the username is case-sensitive in the login process. However, you can modify the PerformLogin method to perform a case-insensitive search for the username before attempting to log in. Below is an example of how you could do this. Important considerations: ...
Posted By Kzvin Jun 26, 2025 01:07:00 PM
Found In Egroup: Advanced Software
\ view thread
Hi Haldar, Sorry for the confusion - I realized that the issue is due to the fact that InverseRefs.GetReferences() only works properly at runtime. These references are not available in the design-time context, which is why the logic behaves correctly in a RunTimeNetLogic but removes everything when ...
Posted By Kzvin Jun 24, 2025 10:17:00 AM
Found In Egroup: Advanced Software
\ view thread
Edit: I just noticed that this question already has a correct answer.
Posted By Kzvin Jun 23, 2025 05:23:00 PM
Found In Egroup: Advanced Software
\ view thread
Hi, If you insert (n) in the expression, the DynamicLink is automatically added below.
Posted By Kzvin Jun 23, 2025 04:48:00 PM
Found In Egroup: Advanced Software
\ view thread
Hi I think you can use: tag.NodeClass.ToString();