Re: Crazy Question Zone: MS Excel as part of the installer
If you need more than one installer to run in addition to LV then you can also use a batch file as mentioned before and have it run at the end of the LV EXE.
View ArticleRe: Building a simulation - Labview Robotics
All of the things you're asking can be done in LabVIEW, but you'll need to write code to do most of them. There are tools in LabVIEW to create and modify XML documents. XML is a generic format for...
View ArticleRe: Is there a file size limit when using Read From Spreadsheet File?
ssmith490D wrote:I'm trying to read in a large file, about 52mb, 525600 lines with 27 fileds in each line using "Read From SpreadsheetFile.vi". I then search the 2D array for -999, which represents...
View ArticleRe: Crazy Question Zone: MS Excel as part of the installer
I've used Inno Setup to install other items along with LabVIEW things. I've actually simplified my installations greatly by not trying to do as much with the NI installer.
View ArticleRe: load cell calibration
Lot of unknowns here. What kind of DAQ? What supply voltage are you using? The load cell you indicated has a 1mv/V output. So if you use a 24vdc input, then your output at full capacity will be...
View ArticleTables controls feel unintuitive
As it stands, the table control feels very unintitive to me. People are used to the look/feel of Excel - selecting entire columns or rows, deleting multiple rows at once, deleting sections of data,...
View ArticleRe: load cell calibration
Also, quickly looking at the specs for the load cell seems to indicate a higher error (+/-10g repeatibility error for one) than you have been told. If you are trying to read this directly, as the...
View ArticleRe: AT Commands using TCP/IP Connection with GPRS Modem
When you press the enter key in a terminal program it sends normally the carriage return and line feed character. You have to do the same in your LabVIEW strings by adding those characters to the end...
View ArticleRe: Is there a file size limit when using Read From Spreadsheet File?
Camerond-- Thanks for the help. I recreated the VI you posted and unfortunately it doesnt work. It looks like the index array vi is only looking at the zero index and not the other 26 fields in...
View ArticleRe: Tables controls feel unintuitive
Hello M, I think you might be looking for custom right-click menus, as described in this tutorial: Tutorial: Create Custom Run-Time Shortcut Menus for LabVIEW Front Panel...
View ArticleRe: Is there a file size limit when using Read From Spreadsheet File?
Sorry Greg, gave credit to the wrong guy on posted vi. Thanks for the help. ssmith
View ArticleRe: DFD integer transfer function for CIC and HBF
No hardware yet. I plan to use an HSDIO to capture ADC stream output. I am using a designers simulated input, and another designers integer coefficents. I can't post most of the details. Attached doc...
View ArticleRe: Is there a file size limit when using Read From Spreadsheet File?
Well, maybe you should autoindex over the 2D array of strings and only convert a row (or column) with each iteration, limiting the need to allocate a huge 2D array that needs to be contiguous in...
View ArticleRe: PCI-8532のDeviceNet設定方法について
Hi Jesse_D, I removed "PCI-8532" and checked by "DeviceNet PXIPCI Advanced.lvproj." It checked that "-2147136366" error code occurred. If a solution is known, please let me know. Thank you .
View ArticleRe: Is there a file size limit when using Read From Spreadsheet File?
I would probably operate on one raw string row at a time using a FOR loop and convert the times to a single timestamp, which will give a 1D array of timestamps at the output tunnel. Then simply take...
View ArticleRe: Crazy Question Zone: MS Excel as part of the installer
Thanks guys, I will check with the client and see if we go forward with any of these suggestions.I'm glad I ask crazy questions.. :D
View ArticleRe: Is there a file size limit when using Read From Spreadsheet File?
Read from Spreadsheet File.vi is not very memory efficient with large files. It reads the entire file as a string and then converts it to a 2D array of DBL. The numeric array occupies 525600*27*8 = 113...
View ArticleRe: DLL custom data type
Hi nathand, Thanks for looking into this.It "sort" of works with a C++ wrapper I've been trying to code. This wrapper uses the API functions described in the documentation from Matlab to allocate...
View ArticleRe: Plotting xyz Coordinates on 3D Graph Help
Hi coqwas, You're welcome. Well, you can repeat the Array Index functions for the other fingers and link them up like what i have recommended earlier. As for your question: So my question is will I be...
View ArticleRe: Plotting xyz Coordinates on 3D Graph Help
Thanks again Lennard The action I plan to take when the uses touches the object, is activate 1 of 5 micro coin vibration motors I have embedded in a glove that is connected to an Arduino, connected to...
View Article