Jump to content

TobyD

Members
  • Posts

    636
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by TobyD

  1. QUOTE(Holograms2 @ Feb 18 2008, 06:46 AM) It sounds like you want the IMAQ Quantify.vi
  2. QUOTE(mesmith @ Feb 21 2008, 06:51 AM) That's the same idea I had. You'll lose some resolution in your measurements, but it should still be close enough to get the job done pretty well.
  3. QUOTE(crelf @ Feb 20 2008, 09:55 AM) I really like that idea...you could have a small image (similar to the navigation window) of the cluster and/or the subVI's block diagram popup when you hover.
  4. QUOTE(NickyD_83 @ Feb 13 2008, 01:57 PM) I don't know of any way to programatically determing which files are selected in windows explorer. There are many third party replacements to windows explorer that will give you access to this functionality, but I think windows has it locked down.
  5. QUOTE(crelf @ Feb 13 2008, 06:59 AM) Wow, you managed to not answer either one of these questions. I assume by components you mean coordinates. Although this approach may work, I think the IMAQ Fit Elipse function would be much easier to configure.
  6. QUOTE(atilla @ Feb 14 2008, 08:58 AM) I don't think this is a bug. Take a look at ragglefrock's post above. It gives an excellent explanation of why this happens and it has helped me to grasp the concept of constant folding for the first time. :thumbup:
  7. TobyD

    Password

    QUOTE(boone301 @ Feb 10 2008, 10:54 PM) It looks like the delay on this is 100ms. Assuming you knew that your password was all lowercase, consited of only letters, and was no more than 5 characters in length it could take up to 14 days to "crack" the password. If you throw in the uppercase letters and the numbers from 0-9 this jumps to nearly 3 years. Aren't things like this against the law in China anyway?!?
  8. QUOTE(YaSmEeN @ Feb 8 2008, 11:25 PM) Anybody please correct me if I'm wrong, but my understanding is that Pre LV8.2.1 was not officially supported under Windows Vista. Many programs will appear to run normally, but certain features will cause error messages or crashes. You can try running LabVIEW in Windows XP compatibility mode (this can be set in the properties of your LabVIEW shortcut) but that will not necessarily make things better.
  9. QUOTE(i2dx @ Feb 8 2008, 12:47 AM) Make sure you check the heat dissipation requirements. With that kind of voltage switching through a MOSFET you'll probably need a good heatsink - Still I think this would be a much better choice than a relay.
  10. QUOTE(stamatios @ Feb 7 2008, 07:35 AM) There is. Search the example finder for Excel.
  11. TobyD

    TestStand Lite

    QUOTE(MikaelH @ Feb 5 2007, 02:03 PM) Hi Mikael, Sorry to ressurect this thread, but I am working on a project that is very similar to the idea of TestStand Lite and I'm just wondering if you ever got a chance to recreate all or part of what you had done. I would love to take a look at it and pull some of your ideas. I am using the "sequence file translator" funtionality of TestStand to come up with a custom text based sequence file that gets translated to a TestStand sequence file. The idea is that not everyone in the company will have to know/own TestStand to benefit from what it can do. Eventually I would like to have some sort of GUI to aid in creating the text based sequence files, but for now I am working on getting the text file format defined and parsing properly into TS. Any ideas and/or lessons learned that you can pass on to me would be helpful. Thanks, Toby
  12. QUOTE(YaSmEeN @ Feb 6 2008, 04:41 AM) It appears you are running Windows Vista and you say you have LV8. Although it may not be relavant to your error message, Vista compatibility officially began in LV8.2.1. You may need to upgrade LV or "downgrade" windows (some would consider going back to XP an upgrade).
  13. QUOTE(ayoobkhan @ Feb 4 2008, 10:00 PM) I hope it goes well for you. If you have any questions let us know.
  14. QUOTE(TobyD @ Jan 30 2008, 10:15 AM) I finally got it working so I thought I'd answer my own question here in case anyone needs it in the future... Before compiling the DLL, set Enable Debugging to true in the build specifications and set breakpoints near the beginning of any functions that you want to debug (or set Wait for debugger on launch to open all functions for debugging). Compile the DLL and move the DLL and all support files to the directory from which the DLL will be called (you can also build your project directly to the calling directory). From any LabVIEW project/application select Operate --> Debug Application or Shared Library... Run the program that calls your DLL (in my case this was TestStand) Push the Refresh button in the shared library debugger and you should be able to select your DLL from the list and debug Step 2 is what had me stuck. Apparently the ini file tells the DLL to run in Debug mode so it has to be in the same folder that the DLL is being called from. Thanks to James Ramsey of NI for helping me out on this one.
  15. QUOTE(Ronnie @ Feb 1 2008, 01:16 PM) Perhaps I'm missing something, but if text is found then it is already displayed in the Word document...Isn't it? Search the examples for "Microsoft" (turn on the ni.com examples as well) and there is one called "Reading Data from a Microsoft Word Document" that should get you started.
  16. QUOTE(tcplomp @ Dec 28 2007, 11:12 AM) The quote begins with QUOTE. If it ended with END QUOTE or /QUOTE that would be fine. QUOTE(crelf @ Feb 1 2008, 10:18 AM) I wonder if the original and reply could be different colours? I was thinking that different fonts or bold/notbold, italic/notitalic might be and idea, but they are things that can actually be changed by the poster, so that wouldn't be a good idea. --- Original Post Ends Here --- I actually like the way this comes out, but as jzoller said, workarounds != native support.
  17. QUOTE(crelf @ Feb 1 2008, 06:28 AM) I agree. This would be a useful feature. I don't want to hijack the thread, but I will also take this opportunity to link to http://forums.lavag.org/Readability-of-RSS-feeds-t9814.html' target="_blank">this idea again because it is somewhat related.
  18. QUOTE(anima @ Feb 1 2008, 06:49 AM) For What? Try expaining your problem in the body of your post and not in the title.
  19. QUOTE(CTITech @ Jan 31 2008, 12:21 PM) Can you show us what you've done so far? Are you writing to a .csv file or a .xls file? The .csv format is much easier to deal with (not to mention faster) in LabVIEW. Check out Write to Spreadsheet File.vi located on the file I/O pallette.
  20. Just curious...what kind of system are you running on (processor, memory, etc)?
  21. I'm trying to debug a compiled LabVIEW dll. More specifically the dll that is built by the TestStand Sequence File Translator Example (text based LabVIEW version of the example) that ships with TS 4.0. I have recompiled the dll with Enable Debugging and Wait for debugger on launch enabled in the build specifications. I then launch the Debug Application or Shared Library window from LabVIEW (in the Opertate menu) and run TestStand (which calls the dll). Nothing happens - the dll runs as expected but I am not able to connect to it for debugging. I have never used the Debug Application or Shared Library functionality and I'm not sure if I'm doing something wrong or if this is even possible (although the help files lead me to believe it should work). Any nudges in the right direction?
  22. QUOTE(Justin Goeres @ Jan 30 2008, 07:39 AM) I'm a "righty" and can do it with my left foot/hand, but it's a bit rough. Theres no hope at all with my right hand/foot. My foot changes directions smoothly and there is nothing I can do to make it stop.
  23. QUOTE(rolfk @ Jan 29 2008, 10:55 AM) That's exactly what I thought! It must either be the same person, or they have the same professor. :gathering:
  24. QUOTE(Justin Goeres @ Dec 17 2007, 04:13 PM) I found a bug in this implementation so I thought I'd post the fix back here in case anyone else needs this code in the future. The example above works fine if every line is unique. However, if your string contains identical lines, any data past the first instance of that line will be lost. By keeping the string reversed when you call Match Pattern you will find the match closest to the end of the original input string. Note: The constant wired to Pick Line is the index of the line you want to replace - counting up from the last line in your multiline string (Last Line=0, Second to Last Line = 1, Etc).
  25. QUOTE(yasmeen85 @ Jan 24 2008, 11:55 AM) I just reformatted my system and only have 8.5 installed. The picture I already posted is the example. It just shows you how to convert the data from a string (pulled from your table) into a timestamp.
×
×
  • Create New...

Important Information

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