List of Contributions

JimA

Contact Details

JimA


My Content

1 to 14 of 14 total
Posted By JimA Nov 26, 2024 02:48:00 PM
Found In Egroup: Advanced Software
\ view thread
Hello Shane, Thanks for showing how to use that code block - it is way clearer. I have edited both the response and the original post. MY UDT is 38,096 blocks, and is a 500 element array of another UDT, as shown below. This is only an example UDT, and I expect the final one to be larger.
Posted By JimA Nov 26, 2024 01:45:00 PM
Found In Egroup: Advanced Software
\ view thread
I figured out what I was doing wrong. Mainly, I can't read, and was looking for something in the library, not having seen the zip file. Reino's solution does not work directly for my application (probably needs some minor modification for my setup), but I can see that at its heart, it is a similar ...
Posted By JimA Nov 26, 2024 01:29:00 PM
Found In Egroup: Advanced Software
\ view thread
OK, so based on the responses, I wasn't able to figure out a significantly better way to use the DataGrid (Reino, I am still trying to figure out your method). However, I created a different sort of workaround that may be a really bad idea, but it does appear to work. I'd appreciate any thoughts on how ...
Posted By JimA Nov 26, 2024 01:19:00 PM
Found In Egroup: Advanced Software
\ view thread
Hello Reino, Could you post a screenshot or two of how to get UDTBrowser? I cannot find it in, but I'm not sure if I am looking in the right place. I have found another work around, but I have some concerns on whether it is a good idea.
Posted By JimA Nov 22, 2024 04:32:00 PM
Found In Egroup: Advanced Software
\ view thread
I tried the tag grid, and as far as I can tell, it is designed to place all the different tags in a given UDT as rows of the grid. It clearly works, but I cannot figure out how to get it to display the data for each element of the array. If I drop the array into the model, I get the result on the top ...
Posted By JimA Nov 22, 2024 08:31:00 AM
Found In Egroup: Advanced Software
\ view thread
I have been attempting to get a Allen Bradley PLC tag to display in a DataGrid, but I am running into some issues. Specifically, I have a tag containing an array of UDTs. Specifically, the tag structure is as shown from Optix: I could not get it to display in Optix no matter what I tried with ...
Posted By JimA Sep 05, 2024 10:54:00 AM
Found In Egroup: Advanced Software
\ view thread
The new variables I added would be the 37th and 38th variables, not including the global and local timestamps.
Posted By JimA Sep 05, 2024 06:18:00 AM
Found In Egroup: Advanced Software
\ view thread
Thanks for the reply! I have tried removing the variables from the datalogger in Optix, the Datastore in Optix, and from the SQL table in SSMS, both individually and in combination. When I removed it from the Datastore or the SQL table, the variables come back just as expected when the program runs as ...
Posted By JimA Sep 04, 2024 02:36:00 PM
Found In Egroup: Advanced Software
\ view thread
I have been successfully logging from my PLC through Optix to SQL using a Datalogger in Optix. Previously, I had added an additional variable to the datalogger and it worked exactly as expected. Today, I attempted to add two more variables, and it is not logging properly. I get the following error in ...
Posted By JimA Jun 11, 2024 12:07:00 PM
Found In Egroup: Advanced Software
\ view thread
Hello all, I figured out my problem. In order for the insert statement to work, the columns have to be explicitly defined in the DataStore. This is not the case for SELECT, but it seems to be required for INSERT.
Posted By JimA Jun 11, 2024 09:36:00 AM
Found In Egroup: Advanced Software
\ view thread
Hello AutomateSHANE, thank you for continuing to engage on this. I do have the snap position set to 'Right': It also appears to kind of do that, as it always displays the same time on the right of the graph. It's just the wrong time. Overall, I tend to think that you are right, and that ...
Posted By JimA Jun 11, 2024 09:21:00 AM
Found In Egroup: Advanced Software
\ view thread
Hello, I am having an issue with the NetLogic Insert command, and I cannot figure out what I have done wrong. I have two insert statements running in NetLogic, and one works but not the other. Here is the code: public class DatabaseLogic : BaseNetLogic ( Store myStore; Table myTable; ...
Posted By JimA Jun 05, 2024 06:40:00 AM
Found In Egroup: Advanced Software
\ view thread
Hello AutomateSHANE, thanks for the response. First off, changing to session appears to have done something, but it is now even more confusing. I also discovered some differences in the behavior based on where I run it that seems important. Prior to changing the reference to Session: ...
Posted By JimA Jun 04, 2024 07:34:00 AM
Found In Egroup: Advanced Software
\ view thread
Hello, I am logging data using a datalogger, and I want to display the last X hours in a Trend object. My data logger is writing to SQL, and I can confirm that it has the proper information for the UTC time, Local time, and all the data. I want it to scale to the last X hours in local time, but it appears ...