Re: Disable F1 Help

2004-06-17 Thread Albert-Jan Brouwer
Matthew Harrison wrote: > Is there any way to prevent the help from popping up on the F1 key? Use an event structure that handles the "Key Down?" and "Key Repeat?" events. Discard these events when VKey=="F1". Albert-Jan --- Dr. A.C.J. Brouwer CIT Egineering Nederland BV http://www.citengineeri

Re: Wanted: #define

2004-06-17 Thread Albert-Jan Brouwer
Stephen Mercer wrote: > The VI in LabVIEW that just returns a constant is compiled by our > compiler to be equivalent to having that constant directly on all the > caller VIs. So the LabVIEW compiler does the equivalent of "function inlining"? What is the general set of conditions under which it

Scripting toolkit available for download

2004-04-24 Thread Albert-Jan Brouwer
A new release of the LuaVIEW scripting toolkit is available for download. Get it here: http://www.citengineering.com/LuaVIEW/download.html To learn about the new features, review the changelog: http://www.citengineering.com/LuaVIEW/changelog.html The toolkit is free for non-commercial use, person

Bug in string control

2004-02-26 Thread Albert-Jan Brouwer
Infrequently, about a dozen times over the past few years, I have noticed garbled data appearing at the end of the text in the string control when deleting or cutting a text selection. (LV 6.1 and 7, Windows). The number of random characters at the end of the string appears to be roughly the same a

Re: Good Programming Practice?

2004-02-26 Thread Albert-Jan Brouwer
George Gatling wrote: > I am pretty surprised to hear so many people clamoring to keep the top > level VI laden with code. In nearly all of the other languages (admittedly > those crude text based ones) the convention is to keep main() or its > equivalent relatively codeless, except to start t

New release of scripting toolkit available for download

2004-02-19 Thread Albert-Jan Brouwer
Dear Info-LabVIEWers, A new release of the LuaVIEW scripting toolkit is available for download. The main new feature is support for passing additional data types to/from scripts: arrays, clusters, enums, and paths. The toolkit is free for non-commercial use, personal use, and technical evaluation

Re: State machine diagram editor

2004-01-20 Thread Albert-Jan Brouwer
> >One can also just use the "Scan From String" primitive with > >the enum type def constant as the "default value 1" and the > >string you want to set as "input string". This way "output 1" > >will return the enum type def with the "input string" value. > > Ouch! How could I have missed that?