create my own intelisense

O

orianavim

Hi,

i'm try to build my own intelisense to some part of our system. Does
anyone know where should i start from? or maybe can you refer me to a
good reference or a open source code which can help me to start writing
such control.

What i'm trying to so is to enable my users to have the same features
that we have in VS.NET on their own forms.

Many thanks.
 
C

Chris Springer

You might try automatically displaying a context menu in the mouseover
event?

Chris

--
Securing your systems is much like fighting off disease -- as long as you
maintain basic hygiene, you're likely to be okay, but you'll never be
invulnerable.

Steve Shah - Unix Systems Network Administrator
 
O

Ori Anavim

actually its a good idea, but the context menu doesn't support scrolling
which may cause to the UI to look really bad if i'm going to list all
the matching items...any ideas?
 
M

MuZZy

Hi,

i'm try to build my own intelisense to some part of our system. Does
anyone know where should i start from? or maybe can you refer me to a
good reference or a open source code which can help me to start writing
such control.

What i'm trying to so is to enable my users to have the same features
that we have in VS.NET on their own forms.

Many thanks.

Well, how deep explanation do you need? From the UI point of view you
can do this: you catch whatever user types, when he prints "." you get
the word before this dot, analyse it somehow and if you have anything to
show, just use a listbox created dynamically and positioned at cursor.

something like that...

or you can see how it's done in ICSharpCode.TextEditor class of
SharpDevelop project - you can google'em.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top