Jump to content

crelf

Members
  • Posts

    5,759
  • Joined

  • Last visited

  • Days Won

    55

Everything posted by crelf

  1. I learned something today. From the LabVIEW help:
  2. RT @jgcode: #LabVIEW Project has shipped - literally, I just duct-taped the box & stuck it in the mail :) Time to put my feet up & relax...

    1. Aristos Queue

      Aristos Queue

      You know, we're still looking for a volunteer to take over the refactoring of error.llb...

    2. crelf

      crelf

      I thought someone was already doing that? Ping jgcode directly (the tweet was a retweet from him). I know he's doing some OpenG stuff at the moment, so he might have some time on his hands.

  3. Thanks for your input everyone - the time has come to bite the bullet and get it done. I think I'll start with InnoSetup and see how that goes...
  4. Does the control to be routed to already exist? If not, replace the old one with the new one - much more straightforward. Edit: SuperS_5 got there before me
  5. That should work fine - post your code and we'll take a look at it for you.
  6. Check your LabVIEW.ini file for fonts. You can also just select the offending controls and ctrl+- (that's hold the control key and press -) a few times to get it back to where you want it.
  7. RT @vishots: EPICS Client I/O Server for LabVIEW 2010 http://bit.ly/9cd0Ms

  8. Can you upload the code? Much easier for us to comment and make suggestions if we can play with the code.
  9. Well yes, but no. LabVIEW can't do run-time polymorphism, so somewhere the poly child needs to know explicitly what the data type is so it can act on it. That said, you can acheive what you're looking for with limited functionality with variants (as mje already suggested) or you could put together an OO architecture that uses inheritance. Either way, you're still just kinda pushing the strictness down the line to somewhere else (which is totally fine, if that's what you're trying to do).
  10. I'm not going to give you a template, but you can make your own from an online resource or two. I like this list of what should/could be in a SysAD/SysDD/SSysDD - it goes into sufficient detail on what each section should contain. Note: I often break what's listed under "Detailed System Design" into SubSystem Design Document(s).
  11. Confirmed (LV PDS 2010).
  12. You can be miffed all you like, but it's actually *exactly* how it works with all "normal" varaibles - when you pass something on a wire into a subvi through its' connector pane you're passing the value of the data on the wire, not a reference to something that was the source of the wire. The connector pane of a VI goes to a front panel node (like the graph you put on your subVI's front panel) <- there's nothing fake about that graph - it's a real graph, it's *not* a reference to the graph in the caller VI. ShaunR's right - if you want to pass a reference to something in a caller VI, then you need to do exactly that - pass a reference to it, not it's data.
  13. There's something wrong with the link - I get "Page Not Found" back from NI's server.
  14. #labview SQLite API updated - download & discuss: http://tinyurl.com/2dxy3jn

  15. We've got some big changes in what's running behind the LAVA Code Repository coming soon - hopefully they will fix this issue. Stay tuned...
  16. That's *exactly* what your problem is - if you don't know when the rollover is, then you don't know when the rollover is I'd try to talk to the vendor to find out the exact rollover value. Yair's right - you can approximate it (and the more times you run it, the closer ou'll get), but if you can find out the exact value then you're golden.
  17. Right - that what I was trying to get at. Thanks for posting the screenshot.
  18. What you see in the image on the screen is a combination of the image and overlays. When you perform measurements (like finding edges), LabVIEW doesn't change the pixels of the image - it instead includes the new information as an overlay, which doesn't form part of the image at all (so the original image isn't corrupted). What you want to do is use IMAQ Merge Overlay - it merges the overlay stuff destructively into the image.
  19. You can call the VI dynamically using a loosely-typed invoke and then set the inputs on the FP, then use the run method in non-blockling mode...
  20. Thanks vugie - I'll check it out. Just a note: I'm not necessarily looking for someting that's free - if there's an app out there that you recommend that costs $, I'd like to hear about that too What kind of issues?
  21. So I'm creating a suite of software that will have several components (some of them will be built in LabVIEW, some not), and I'm looking for something to build that final setup.exe that will include all of my components as well as be able to write registry keys. I'd like to show custom logos on the UIs and windows that display license files, but they're secondary (the components will have their own installers, I just need this supervisory one to install them all in turn). I also need the ability to allow the user to select components (although some of them need to be installed). I sued to use InstallSheild for this (but that was long ago), as well as Setup2Go. Anyone got a favortie installer app that they've got personal positive experience with?
  22. I wanted to bump this thread, as I'm having the same issue right now. Please vote!
  23. Icon Technologies used to have a toolkit where you could make your UIs be all sorts of shapes, but I don't see it on their website anymore...
  24. #labview LVOOP: Dynamic Dispatches for DVRs - download & discuss: http://tinyurl.com/29atlx6

  25. Can you upload the file and the code that you used to write and read the file?
×
×
  • Create New...

Important Information

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