List of Contributions

Crowder

Contact Details

Crowder


My Content

1 to 15 of 15 total
Posted By Crowder Apr 28, 2026 04:31:05 AM
Found In Egroup: Advanced Software
\ view thread
Thanks for this, I have found an solution that involves some C# and some offsets to identify where I need to put my dialog box. Its a shame because it would be really slick to know where the coordinates are. -------------------------------------------
Posted By Crowder Apr 24, 2026 04:54:00 AM
Found In Egroup: Advanced Software
\ view thread
Hi, I am attempting to get the cursor position when a Mouse Down is detected on an object. this is so I can alter the popup position of a dialog box. Reading I was rather hoping to use the MouseEvent type as a parameter in my code [ExportMethod] public void ClickHandleEvent( MouseEvent mouseEvent) ...
Posted By Crowder Apr 01, 2026 05:15:35 AM
Found In Egroup: Advanced Software
\ view thread
Hi Gentle bump, to see if you need anything else from me? -------------------------------------------
Posted By Crowder Mar 27, 2026 08:27:00 AM
Found In Egroup: Advanced Software
\ view thread
I tried a ZIP file before and it said no, but its worked this time. Any questions please ask. -------------------------------------------
Posted By Crowder Mar 27, 2026 07:07:50 AM
Found In Egroup: Advanced Software
\ view thread
Hi, not sure how to get the project file to you as the forum doesn't permit me to upload. requested contact. Thanks -------------------------------------------
Posted By Crowder Mar 27, 2026 05:45:02 AM
Found In Egroup: Advanced Software
\ view thread
It appears that the compiler isn't looking at the output type of the conditional statements, e.g. String Formatter. So as a further test, I added a dynamic link to the true condition. see below this gets rid of the warning but feels like a very bodgey way to do it. ---------------------------- ...
Posted By Crowder Mar 27, 2026 05:37:54 AM
Found In Egroup: Advanced Software
\ view thread
Hi I've just tested to make sure, so I dropped a single widget on a Screen, cleared the messages and then loaded the screen, the warning message came back in the output window. when I clicked the hyperlink in the object column it take me to the instance of the label on the screen with only one widget ...
Posted By Crowder Mar 27, 2026 04:28:00 AM
Found In Egroup: Advanced Software
\ view thread
Hi the word "None", was typed into that box by me. I even tried adding "none" before (0:d) in the false path, this didn't cure it. It works it just generates warnings. -------------------------------------------
Posted By Crowder Mar 27, 2026 03:17:00 AM
Found In Egroup: Advanced Software
\ view thread
Hi this undoubtedly appears to be a silly question, I have a widget that displays information, and one of those items is Part Number (Integer), if this value is 9999999 then we treat it as no part number specified. So I have a label with a complex dynamic link picture below, I'm getting a warning ...
Posted By Crowder Mar 27, 2026 02:16:00 AM
Found In Egroup: Advanced Software
\ view thread
Hi, If you have array elements, you will need to do a ChildrenRemoteRead() after you have got the Tag Structure. Code similar to below, this will force Optix to update all the elements, var TankList = Project.Current.Get ("CommDrivers/EchoEmulator/EchoEmulator/Tags/Controller Tags/TankList"); Tan ...
Posted By Crowder Mar 23, 2026 08:55:05 AM
Found In Egroup: Advanced Software
\ view thread
Hi, When I swapped to the method suggested, it worked, little example below var recipeFromILCtags = Project.Current.Get ("CommDrivers/RAEtherNet_IPDriver1/RAEtherNet_IPStation1/Tags/Controller Tags/RecipeFromILC"); recipeFromILCtags.GetVariable("ProdOrderNum").Value = orderRecipe.ProductionOrde ...
Posted By Crowder Mar 19, 2026 08:43:00 AM
Found In Egroup: Advanced Software
\ view thread
Hi, I've spent the morning trawling the documentation and haven't really figured this out in a nice way. I have a UDT in my PLC I need to be able read and write data from. below is a simplified version of the UDT demonstrated in c#. public class Order ( int orderNumber (get;set;) int quantity (get;set;) ...
Posted By Crowder Mar 16, 2026 05:37:49 AM
Found In Egroup: Advanced Software
\ view thread
Legend! I had a feeling it was something along the lines of accessing the underlying, rather than the instance I just hadn't figured out to use owner. foreach( AllocBoxWidget machine in Owner.FindNodesByType ()) ( string strMachineName = machine.GetVariable("MachineId").Value; var MachinePartNumber ...
Posted By Crowder Mar 16, 2026 05:08:00 AM
Found In Egroup: Advanced Software
\ view thread
I have a requirement to use a number of visual components and update them based on values from JSON data. to achieve this I have created a Widget and given it the variables I need to be able to change/update, these are linked internally. There are up to 30 of these widgets on my screen. This screen is ...