I am trying to create something similiar to that which is featured in Visual Studio.net. I am sure you are very familiar with the list box that appears when you type in something like "textbox1." and then it displays a list of possible endings to the line. Basically what I want to create is something that does this exact same thing, except I tell it what to say. So far, I have a program similiar to that of notepad. What I want it to do, is as I put a period in, it reads the word prior to the period, and if anything is available for the word, it displays a list box just like that in the vs.net development environment. I can go up and down the list with the arrow keys, and as I type in the word after the period, it narrows down on possible things it could be.
So basically, it has to act exactly like how it works in the visual studio development environment, except it runs on my program, and I define everything.
For example:
If I were to type in hello in the notepad I created, and then put a period on the end of it, it would display all the results that I programmed it to give:
hello.text
hello.blah
hello.blah2
hello.blah3
hello.listgoeson
I hope I have explained this well enough, and I was wondering if someone could point me in the direction of what I could use.
Thanks in advanced,
decrypt
So basically, it has to act exactly like how it works in the visual studio development environment, except it runs on my program, and I define everything.
For example:
If I were to type in hello in the notepad I created, and then put a period on the end of it, it would display all the results that I programmed it to give:
hello.text
hello.blah
hello.blah2
hello.blah3
hello.listgoeson
I hope I have explained this well enough, and I was wondering if someone could point me in the direction of what I could use.
Thanks in advanced,
decrypt