event structure bug?

2003-12-22 Thread ONT
I'm not sure if this has been posted before (about 4400 hits came up for event structure bug): Start with a blank VI, drop an event structure, add dynamic registration terminals, add and wire register, unregister for events. Next, drop two create user event vis and wire a plain boolean constant

Re: Changing slider maximum scale programmatically

2003-12-22 Thread Ben
You are correct! That gives you two options; 1) Right clcik and choose disconnect from typdef, or 2) Customize control and make it a normal typdef. Ben

Re: Compare 2 string's - output boolean

2003-12-22 Thread Mads
This is where LV's polymorph functions make things very simple: just wire the strings into an Equal? function (from the comparison palette), if they are equal the output will be a boolean true.

Re: How can I import a large .wav file into LabVIEW for analysis?

2003-12-22 Thread Mads
The file read functions have a count and an offset input. Just tell it where to start in the file (offset) and how many elements of the given data type you want. Read the block, analyze it and then read another portion of the file. If you want to start where the previous read stopped just wire the

Re: What is the Algorithm Used by the LabVIEW Remote panels?

2003-12-22 Thread Behzad
Thank you Mr. Greg McKaskle Can you help me for finding some technical note about LabVIEW Remote Front Panels because I used this feauter of LabVIEW in my thesis.

ASCII to decimal conversion function

2003-12-22 Thread dannyrap
I use LabVIEW 6.1 I'm reading an instrument using RS-232 and the Serial Port Read.vi The vi reads 3 bytes in ASCII format I need to convert it to decimal or hexadecimal in order to calculate the instrument output. It is possible to do it offline (when the vi isn't running) by rigth clicking on the

Re: question on DAQmx

2003-12-22 Thread Zvezdana S.
Jim, You can wire an array or strings indicator to the output of Channels property node. Zvezdana S.

Re: unexpected error - why ?

2003-12-22 Thread Jim Kring
Probably because the Boolean is set to a latch mechanical action. Change it to a switch mechanical action and the error will go away.

Re: Events Tab Control Navigation Buttons

2003-12-22 Thread Roy F
Mads is correct in all respects. His usability suggestion is a valid one, but we still need to fix the bug (and will). Sorry for the inconvenience.

Copy Excel sheet to another workbook

2003-12-22 Thread yair_f
I'm trying to copy an excel sheet to another sheet in another workbook (and save all formulas and formats). I'm using LabView 6.1 and win2000. can you help me with that ? Thanks.

Re: ASCII to decimal conversion function

2003-12-22 Thread Les Hammer
Look under: Functions All Functions String String/Number Conversion [EMAIL PROTECTED]

Re: unexpected error - why ?

2003-12-22 Thread FischeFr
right! really nice - I hate it ! thanks

Re: Unable to read from AI Read

2003-12-22 Thread Dennis Knutson
p.s. If you want to give someone the best rating, it's four stars. One star is a lousy rating.

Re: Is it possible to pick a point in a graph and drag/move it to another position using the mouse?

2003-12-22 Thread Jim Kring
Yes, this should work.

Re: Copy Excel sheet to another workbook

2003-12-22 Thread Michael Munroe
You will need to use the Worksheet.Copy Invoke node and wire the Before or After input with a reference to a worksheet in another workbook. If you are already accessing both workbooks, just create a reference to a sheet in the target workbook using the Workbook-Sheets Property and Sheets-Item

daq down counter example for pci-mio-16e-4 wanted

2003-12-22 Thread Holger
Hi! I am searching for an example vi of a down-counter for ttl pulse trains. thnx, Holger

Re: labview 7 SubPanel Container Question

2003-12-22 Thread Jim Kring
I believe that the Front Panel of the VI which is to be inserted into a SubPanel Container cannot already be opened (or already inside another SubPanel Container). To solve this problem, you can set VI.Panel.Open = FALSE just prior to inserting the VI into the SubPanel Container. I hope that