Page 1 of 1
Intellisense
Posted: Tue Feb 05, 2008 8:08 pm
by grimdoomer
Is it possible to use the Intellisense in a windows application? as like a form object?
Posted: Tue Feb 05, 2008 8:18 pm
by LuxuriousMeat
Do you mean you want to create your own intellisense? If so, soldier of lite made one for his script tool, so you can ask him.
Posted: Wed Feb 06, 2008 4:35 am
by xbox7887
To create comments, just tap the slash three times above the item you wish to comment on, and fill in the information. If it's a dll, you'll need to export an xml file with the comment information. You can do so by going into build properties.
Posted: Wed Feb 06, 2008 5:06 am
by xzodia
lol xbox made a post which has nothing to do with the thread >_>
as LM said you have to create it yourself using a listbox, theres several tuts on the
interwebz
Posted: Wed Feb 06, 2008 8:40 am
by xbox7887
xzodia wrote:lol xbox made a post which has nothing to do with the thread >_>
I assumed he wanted intellisense to recognize his own code, in which he would need to manually comment the functions he wants intellisense to recognize, but his question is vague at best... :X
Posted: Wed Feb 06, 2008 8:40 am
by grimdoomer
Thanks ill look into that.
Posted: Wed Feb 06, 2008 11:00 am
by Prey
Don't use a listbox, use a treeview (modified to look like a list).. looks better + can support images..
Posted: Wed Feb 06, 2008 11:06 am
by OwnZ joO
Prey wrote:Don't use a listbox, use a treeview (modified to look like a list).. looks better + can support images..
Did you mistype and mean to put ListView? Or did you actually mean to put treeview? If so why?
Posted: Wed Feb 06, 2008 11:31 am
by Prey
Looks better.
Posted: Wed Feb 06, 2008 11:43 am
by OwnZ joO
I see, good to know.
Posted: Wed Feb 06, 2008 12:49 pm
by grimdoomer
Ok, im gunna look some more into the tutorials and try to create my own as soon as I finish the model raw for vista. Thanks for you help every one!
Posted: Thu Apr 17, 2008 5:54 pm
by demonmaster3k
forget listbox and treeview, use a list view and have the code definitions on a seperate xml file. (I've seen intellisense made that way on codeproject) if you don't feel like making your own, there are open-source versions avaliable
Posted: Thu Apr 17, 2008 7:50 pm
by OwnZ joO
demonmaster3k wrote:forget listbox and treeview, use a list view and have the code definitions on a seperate xml file. (I've seen intellisense made that way on codeproject) if you don't feel like making your own, there are open-source versions avaliable
This topic is old. I mentioned a ListView, and if the intellisense he wanted was for something like a scripting program it would need to be dynamic and not set beforehand in xml(Idk if that's the case, but it's something to think about)