06-01-2006 11:13 AM
06-01-2006 04:56 PM
06-05-2006 04:31 PM
06-06-2006 01:59 PM
06-06-2006 04:22 PM
I am currently using Labview 7.1. I guess what I saw was that if a function have a return value then the context help in Labview would display a one line description right below the message "Invoke Method: functionName". Now I looked at it a little close I realize it is not the same thing as helpstring in COM.
However assembly does support different syntaxes to add descriptions to assembly object functions. One way is to use System::ComponentModel::Description to describe a function . For example in Managed C++ I can do this,
public __gc class foo: public IDisposable{
public:[Description(S"You can enter a description for the DoSomething function here...")]
Void DoSomething( );
};
A lot of tools would pick this up and display the description. So here are my questions:
(1) Does Labview support any of the assembly help syntaxes?
(2) If answner to (1) is no, is there plan to add something in future releases of Labview to allow assembly developers to add context help for Labview developers? (All the Labview developers using my assemblies are cursing me for not providing context help ;-<)
06-06-2006 05:14 PM