03-17-2023 11:28 AM
This is just test code to get a basic understanding of how things could work.
But yes, I definitely should change my username to Rube Goldberg
03-17-2023 11:30 AM - edited 03-17-2023 11:32 AM
And I called it by static reference from a different loop because I didn't want it to stop the main loop. I want a popup window to happen
03-17-2023 11:44 AM
Alright. I think this is the solution
MAIN VI
SUBVI
03-17-2023 11:49 AM
@David99999 wrote:
And I called it by static reference from a different loop because I didn't want it to stop the main loop. I want a popup window to happen
That makes no sense. Since it is a different loop, it won't block the other loop.
See if this can give you some ideas.
03-17-2023 11:51 AM
@altenbach wrote:
@David99999 wrote:
And I called it by static reference from a different loop because I didn't want it to stop the main loop. I want a popup window to happen
That makes no sense. Since it is a different loop, it won't block the other loop.
See if this can give you some ideas.
Ok but, if I did it your way, I would have to get that cluster data back to the other loop somehow. Because like I stated before, there will be a TCP connection that will transfer that new updated cluster data to the server
03-17-2023 11:59 AM - edited 03-17-2023 12:51 PM
This code is just "your code", but cleaned up.
Why can't you do the TCP transfer in the event loop?
I assume you only want to send the new values over the network when they change, right?
If other things need to happen, you need to give all requirements!
LabVIEW has plenty of ways to communicate across loops. Once we know the details, we can suggest a solution.