Jump to content

crossrulz

Members
  • Posts

    532
  • Joined

  • Last visited

  • Days Won

    21

Everything posted by crossrulz

  1. The announcement for the acquisition did happen in early April. Now it is just waiting for approval by the US government and who knows what other legal red tape for it to actually happen. One of the articles mentioned the acquisition finalization was expected to be in Emerson's financial 2024 H1, which starts in October. Do not expect to hear anything until that happens.
  2. I tend to also follow this concept. And, often, the accessors will be set to "Protected" so that only children classes can use them.
  3. It does not apply to classes. In fact, the UI thread is only used in property nodes that somehow reference a front panel or something on a front panel (ex controls/indicators). VISA property nodes, for instance, do not use the UI thread. The downside to me for the property node for accessing private data in a class is that you have to have an accessor VI to do so. You do not need the accessor VI if you are using the bundle/unbundle by name.
  4. We've known the MathScript was EOL for quite a while now. So that one is not surprising to me. The Control Design & Simulation Module is a bit of a shock to me (not that I know anybody that uses it). But the renaming of the NXG controls is interesting. If you follow that link in the description, it will eventually lead to a github repository. Perhaps they are now open-source?
  5. This will only affect you if you use custom fonts. If using the default since Windows 7, you will see no change. Neil was using fonts to match XP.
  6. That's unsettling. When my current project is done, I was planning to upgrade to 2023Q1 64-bit (currently using 2019SP1 32-bit). Apparently, I will have to put more scrutiny in my evaluation first.
  7. But yet technically completed with the Stall Data Flow.vim that was released in 2017 along with a bunch of other malleable VIs.
  8. Here's the starting point: Wait (ms) with error pass-through From what I remember at CLA Summits, this was unofficial up to 2016 (called a "macro" at this point in time). But the cat was waaaaaaaaaaay out of the bag, so NI spent time to make it a proper feature and malleable VIs started in 2017. The Type Specialization Structure was not quite ready for prime time for another year (2018).
  9. Keysight buying NI would be monopolistic (2 of the biggest T&M companies merging). Not likely to happen, but I could see Keysight buying Digilent (an NI company) and Emerson buying the rest of NI. I'm not familiar with Fortive, so I may have to look into them. But sale by early April?! At least its not far from now. Edit: Fortive owns Fluke and Tektronix. Them buying NI would be interesting as well. Would the parent company force NI and Tek to work together on a PXI scope again?
  10. I might have a couple of classes floating around that hit 4 levels deep. I would say well over 90% have 1 or 2 levels, so I voted based on the large majority.
  11. Running the code in 2022 Q3 shows the same result. Very interesting. Though, I very rarely have to use Type Cast. Flatten To String and Unflatten From String do all of the conversion I tend to run into.
  12. Mark Balla and Kevin Shirey managed to record a bunch of the sessions. Links are available on LabVIEW Wiki. https://labviewwiki.org/wiki/NI_Connect_2022 The NI videos Dataflow_G links to is from the the opening keynote.
  13. I actually found COVID helped me renew since so many user groups went virtual. I was attending user group meetings from Europe, Texas, Michigan, etc. Those points added up really quickly.
  14. In my opinion, part of the issue was getting confidence in the "separate from compiled" feature. I would have to dig into some history to figure out when NI started using it for vi.lib. But shortly after that, it would make a lot of sense to push this in the drivers. So if you really want to play the hindsight game here, it is something that should have been feasible around 5 years ago. But NI was putting all of its marbles into NGX at that time. Regardless, I am happy about this feature and I look forward to being able to avoid updating drivers purely for the "new LabVIEW version support" and no other changes.
  15. We got some more clarification on the "decoupling driver versions" on the public beta forum: https://forums.ni.com/t5/LabVIEW-2022-Public-Beta/LabVIEW-2022-Beta-New-Features/m-p/4234011#M49 In short, there will be a new common location that the driver will install the LabVIEW Support to and LabVIEW will look there. They will depend on the "Separate From Compiled" to allow the VIs to be used by multiple versions of LabVIEW.
  16. A new hardware platform called TestScale sounds interesting. Unfortunately, NI's web site has no information on it yet.
  17. Yeah, but this is still a major support hole.
  18. HP spun off the T&M into Agilent, who grew into the Life Sciences industry. Agilent then spun off the T&M into Keysight. Personally, I'm expecting NI to spin off the T&M part of their business into a new company in the next 5-10 years. Whether or not LabVIEW is part of that, I have no clue.
  19. Your DAQ sample rate is 1 second. So you need to make sure you are pulling off the data at least at that rate. 1. Again, change your Timed Loop to a normal While Loop. It is hurting you more than helping. 2. Change your DAQmx Read to be N Channel 1 Sample. This will simplify things a little as you will no longer need the 5 functions just to get a single value out. You will just need to use Index Array (expand to 2 elements so you can get both channels). 3. You need to clear the task once the loop is done.
  20. No call for presentations. It will be all NI.
  21. 1. Change your Timed Loop to a simple While Loop. The DAQmx Task will limit the loop rate. 2. Don't use the DAQ Assistant. Learn to use the actual DAQmx API. You will make things a lot more efficient.
  22. Well, that explains what I encountered today as well. I did notice an extra character. I didn't investigate beyond that. Hopefully this will be fixed quickly in a patch.
  23. crosspost on the dark side: https://forums.ni.com/t5/LabVIEW/Application-recovery/m-p/4213987
  24. Yeah, but you are talking about pasting into other applications. How are they interfacing with the clipboard? We have no control over that. You will see this same issue if you try to interact with a DLL that uses C-style strings (data will be cut off at the NULL character). I should also state that the NULL is copied over if you paste into another LabVIEW string control (yes, I just tested it).
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.