Intellisense - or whatever it is
-
I created my own 'CLASS' files. I was able to use it across my projects. But I wanted to put the so called extra comments / information in the code that will be displayed along side in the VS.NET 2003 IDE when the method is accessed. I hope I am able to explain what I want here. Please help... There is nothing new under the sun,
But there are lots of old things we don't know.
- Ambrose Bierce -
I created my own 'CLASS' files. I was able to use it across my projects. But I wanted to put the so called extra comments / information in the code that will be displayed along side in the VS.NET 2003 IDE when the method is accessed. I hope I am able to explain what I want here. Please help... There is nothing new under the sun,
But there are lots of old things we don't know.
- Ambrose BierceIf I understood what you are wanting correctly, you simply put the text that you want to appear upon selecting a member funtion in the intellisense listbox in comments right above or to the right of the function's protocol or declaration. For instance:
class ClassName
{
.... other code
// you can place the text here.
void FunctionDeclaration(); // or here.
.... other code
};I hope this is what you was wanting. Happy Programming and God Bless! Internet::WWW::CodeProject::bneacetp
-
If I understood what you are wanting correctly, you simply put the text that you want to appear upon selecting a member funtion in the intellisense listbox in comments right above or to the right of the function's protocol or declaration. For instance:
class ClassName
{
.... other code
// you can place the text here.
void FunctionDeclaration(); // or here.
.... other code
};I hope this is what you was wanting. Happy Programming and God Bless! Internet::WWW::CodeProject::bneacetp
But the comments dont appear in the intellisense... I use VS .NET 2003 with VB .NET There is nothing new under the sun,
But there are lots of old things we don't know.
- Ambrose Bierce -
But the comments dont appear in the intellisense... I use VS .NET 2003 with VB .NET There is nothing new under the sun,
But there are lots of old things we don't know.
- Ambrose BierceS P S wrote: VS .NET 2003 with VB .NET Oh, I didn't know that you were using VB.NET. I thought that you were using VC++.NET. I have tried different things, but I could not come up with the result that you wanted. I wonder if VB.NET even allows the capability. It would be strange if it didn't. Sorry that I couldn't have done more. Happy Programming and God Bless! Internet::WWW::CodeProject::bneacetp
-
But the comments dont appear in the intellisense... I use VS .NET 2003 with VB .NET There is nothing new under the sun,
But there are lots of old things we don't know.
- Ambrose BierceVB .NET does not support them. But there are extra tools which will do it. I think PowerToys for Visual Studio supports them. And there's this http://www.fesersoft.com/products/vbxmlcomments/default.asp[^] which is the most popular. Kevin
-
VB .NET does not support them. But there are extra tools which will do it. I think PowerToys for Visual Studio supports them. And there's this http://www.fesersoft.com/products/vbxmlcomments/default.asp[^] which is the most popular. Kevin
Thanks. Will give it a try :rose: There is nothing new under the sun,
But there are lots of old things we don't know.
- Ambrose Bierce