LAVA 1.0 Content
Members-
Posts
2,739 -
Joined
-
Last visited
-
Days Won
1
Content Type
Profiles
Forums
Downloads
Gallery
Everything posted by LAVA 1.0 Content
-
sorry, 1 last question. if i wish for the next message to appear on a new line, is it possible?
-
The G-toolbox by Georghe Zhou provides an interface for this (on Windows). Ton
-
QUOTE (huotom @ May 14 2009, 07:33 AM) They most likely will adept, one of the recent Stackoverflow podcast discussed this, the comment of Joel Spolsky was that any commercial product that had successfull open source extensions/plugins they will be embraced and implemente as a feature by the owner. Ton
-
QUOTE (huotom @ May 14 2009, 04:44 AM) I have a challenge. It would be quite easy to get started on this, but you can build such a VI. You can get the actual selected controls from a VI (to have an idea the CCT API has such code) So for any of the major datatypes with a lot of controls (numeric/string/path) you could write a set of properties you wish to access, now with a little floating VI you can interact with the selected control. The best thing about this, is that when you do this just enough to get the downloads spinning, NI will realize this is a very usefull feature and they will implement it really good and much better than any of us could ever do. Ton
-
Thanks santi122. i tested it & it is working. Many Thanks
-
Many thanks pjm_labview. this is the vi that i've wish to do.
-
i encountered some problems while trying out the string method. i wish to keep the message in the string indicator after clearing the message in my string control. hope someone could advise me on how i could modify my vi.
-
Load Only FP into memory
LAVA 1.0 Content replied to LAVA 1.0 Content's topic in Object-Oriented Programming
I have a plugin selector, but I want beforehand check which VIs are valid plugin VIs, but some of these VIs have an enormous footprint and take up a minute to load, even if the user decides to load another plugin VI. So I want to limit the time needed to check which VIs are valid plugin VIs. Ton -
Load Only FP into memory
LAVA 1.0 Content replied to LAVA 1.0 Content's topic in Object-Oriented Programming
Yes, but you use a splash loader.... PM me if you are part of the current Beta. Ton -
Load Only FP into memory
LAVA 1.0 Content replied to LAVA 1.0 Content's topic in Object-Oriented Programming
I think other people must have covered this as well, so I get a little bit more descriptive. I am trying to list all VIs in a given directory that will fit a given framework. Basically the front panel should have 2 given controls of a certain type and label, together with 3 indicators of a given type and label. The genuine problem is that loading the VIs with Open VI reference takes up to a few minutes when the VI that is called only takes a few seconds to run. So I try to only open up the front panel and see if the VIs match those criteria. Ton -
Issue with text into Picture Control
LAVA 1.0 Content replied to Antoine Chalons's topic in User Interface
One question what kind of printer driver do you use? Ton -
Thought experiments, please answer the following questions without using LabVIEW QUOTE (crelf @ May 11 2009, 10:40 PM) What is the output value of the 'Select Function' The same as the input value The invert of the input value True False QUOTE (TobyD @ May 11 2009, 11:46 PM) Nice. :thumbup: With which primitive(s) could the Equal and Select primitives be replaced? and , with y = 1 , with Type as Boolean and , with Type as Boolean Another code snippet Ton
-
QUOTE (dannyt @ May 11 2009, 05:09 PM) hi. thanks for the info. it helps alot & i learn alot.
-
hi. thanks for the diagram. i tried the 3rd method only as i could only find the concatenate string. can any1 tell me the names of the other component? thanks for the help.
-
Load Only FP into memory
LAVA 1.0 Content replied to LAVA 1.0 Content's topic in Object-Oriented Programming
QUOTE (Aristos Queue @ May 10 2009, 01:27 AM) Yes I know the Read Linker Info, however I want the piece of info that is missing from the linker, I need to know if some controls/indicators (by name) are present, I don't need to know what subvis they use. Ton -
I am trying to list all the VIs with specific controls on the FP, however I don't want to load all those VIs into memory. Some may contain several classes and have a long loading time when using 'Open VI Reference'. Does anyone know if it is possible to only load the front panel of a VI into memory to check which controls are available? Ton
-
QUOTE (ShaunR @ May 9 2009, 02:40 PM) Why should this be a bad thing? If you create a good reusable VI for such a specific action I have no reason why this is a bad technique. If it only is a bad thing if the only thing contained inside the subVI is a property method. Ton
-
QUOTE (amila @ May 8 2009, 11:08 PM) Just for clearity these VIs are allready present inside your vi.lib, have a look at: vi.lib\picture\picturesupport.llb Ton
-
If you need the center of a rectangular area (like you seem to need) you have allready such a VI inside your VI.lib. If you install OpenG's nilib rectangle you will have a rectangle palette added. One of the VIs is RectCentroid. This returns the center point of a rectangle. Ton
-
is there anyway to prevent my message to be clear in the string indicator? for example, when i type some words in the textbox, the words will appear in the string indicator. however, when i type in another message, the previous message that was displayed will disappear. is there anyway to input the new message without removing the previous message?
-
Passing Control Reference in SubVIs & Type Def
LAVA 1.0 Content replied to pete_dunham's topic in LabVIEW General
QUOTE (candidus @ May 7 2009, 09:57 AM) QuickTip: You can link a control reference to a typedef by dragging and dropping the typedef-control onto the control. Ton -
'AND' of an empty boolean array is TRUE?
LAVA 1.0 Content replied to Justin Goeres's topic in LabVIEW General
I think this is called the Identity of a function. For a AND Array the Identity is True where an OR Array has a FALSE Identity. Ton -
thanks for the help guys. especially the graphic diagram.