Jump to content

crelf

Members
  • Posts

    5,754
  • Joined

  • Last visited

  • Days Won

    54

Everything posted by crelf

  1. Changing the world, one VI at a time. That's just *sniff* beautiful!
  2. Ahh - gotcha. Staying tuned with great interest...
  3. I've had the same problem with VIs called from TestStand - anyone from NI care to comment? Perhaps provide a CAR?
  4. I don't really think their use is really valuable for multiple instances (you can save any normal cutomized control for that), but for when you want to build functionality into a control - sort of like the difference between a standard VI Global (just holds data) and a Functional VI Global (holds data and performs some work on them).
  5. Sure - there's nothing new in dqGOOP, but it's a particularly eloquent implementation of it - and also a IMHO great place for those unfamiliar with OO to start understanding the concept.
  6. C'mon Pete - I know that you've got a plethora of more keyboard shortcuts Have you ever thought of putting them all into a new thread?
  7. Now if only the LabVIEW Runtime Engine was small... :laugh:
  8. Come to think of it - that means that you could write to a global and then read from it again before it's updated. I know that globals inherently lead to race conditions, but the statement above means that even if you force dataflow so a global is written on your BD and then later read, there is no gaurantee that the write happened before the read...
  9. That's right - locking a VI in Run Mode stops the user from selecting anything on the diagram, so they wouldn't be able to copy anything out of it.
  10. Yes they do (from "VI Execution Speed" on NI's website): How Multithreading Affects User Interface Actions When you write to a local or global variable, LabVIEW does not switch to the user interface thread immediately. LabVIEW instead writes the value to the transfer buffer. The user interface updates at the next scheduled update time. It is possible to update a variable multiple times before a single thread switch or user interface update occurs. This is possible because variables operate solely in the execution thread. Functional global variables can be more efficient than ordinary global variables because they do not use transfer buffers. Functional global variables exist only within the execution thread and do not use transfer buffers, unless you display their values on an open front panel.
  11. :2cents: Now that's a good idea - and you're right, it shouldn't be too difficult to implement, as all you're really talking about is making the "Change to Edit Mode" functionality password protected at the VI level - the users could still open the VI, run it, see the BD, even open subVIs, but they wouldn't be able to edit the diagram...
  12. Sweet! Now everyone's going to be watching your slogan Jim - choose carefully...
  13. Very very interesting - thanks for doing the research!
  14. Personally, I'm a big fan of GOOP using queues (I'd implemented my own version prior to the dqGOOP release, but the dq version is a lot cleaned than mine) - it's easy, fast and covers a lot of what I need to do (I'm certainly not a GOOP 'power' user). I'd sure welcome an openG version (is there any legal issues here? Can OpenG release an open under LGPL that's very similar to the dq version?) Does anyone have any ideas of what's under the LabVIEW OO engine (soon to be realeased)? Is it going to be queue based, or something else entirely?
  15. Also, changing anything on the BD between subsequent runs causes the VI to recompile, meaning that the memory space is reallocated. These two methods sort-of demonstrate the different behaviour between runs, but they unfortunately don't fix the bug - that's NI's job :laugh:
  16. LabVIEW does indeed have issue with opening large files - what you need it the "Large File" package from OpenG - download and install the Commander and you'll be able to get access to all of the packages...
  17. Probably: head over to the Beta Program Website and register - then they'll contact you if you've been selected...
  18. .NET and ActiveX are far more than just controls - my question is: if we can do Win32 DLL calls, can we do cusom ActiveX DLL calls under RT? I'm thinking that the answer is most probably going to be "no"...
  19. Can you post a range of example images alng with a description of the region you're interested in?
  20. I've had great sucess with Port Controller in the past, but never tried it on an RT system...
  21. Just imagine it - a LAVA user group meeting, with everyone in thongs... . . ...then again, you probably shouldn't
  22. My personal laptop is a 3GHz P4 with 1Gb of RAM - unfortunately my wife uses that one for checking her mail, whereas my work-provided one is a 1.3Ghz M with 512Mb of RAM - there's a HUUUUUUUUGGGGGGEEEEEE difference between them
  23. Wow! A real-life-honest-to-goodness CAR - I never thought I'd see the day! Looks like the ol' NI LabVIEW Champions programme is really starting to pay off - thanks Darren!
  24. Yep - it's a particularly evil bug when not only is the result wrong, its behaviour changes between runs I feel dirty...
×
×
  • Create New...

Important Information

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