Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

This is a tough issue?

Status
Not open for further replies.

ixian

Programmer
Jul 13, 2001
128
US
Hey all,

Okay I have a "smart" list box coded
If some one type in application then a "." then a list box pops up with list of various items.

My question is I need to expand the "smart" list boxes to include "_", "(", ":" and " = "?

I know that I have to the keyup function...but do I have to do a case select listing? or should I create a (class) module for each one?

Aaron Fear is the mind killer!!!!!!
 
In your keyup, why wouldn't you "Or" the values together in an If statement?

Chip H.
 
Chip

So you are saying where I have "."(most of the lines of code with it has IF/Then statements)....just insert it like :

If blah blah <> &quot;.&quot; or &quot;=&quot; or &quot;_&quot; or &quot;:&quot; or &quot;(&quot; Then blah blah blah

Aaron Fear is the mind killer!!!!!!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top