List box control

  • Thread starter Thread starter Jorge Novoa
  • Start date Start date
J

Jorge Novoa

Hello!

I need to know if there is some list box control which displays two lines
per item on the list.

Where can I find that control?

I'm using Access XP

Thanx!
 
Jorge Novoa said:
Hello!

I need to know if there is some list box control which displays two lines
per item on the list.

Where can I find that control?

I'm using Access XP

Thanx!

Yes, our TList control will allow you to have two or more lines per
item in a list. You can use TList as a List, a Tree, or a Grid. To
have multiple lines per item enabled for all items set
TList.DefItemMultiLine = True.
Otherwise you can specify that only specific items are multiple line
TList.ItemMultiLine ( itemindex) = true
To use TList as a list is easy.
Just use AddItem method to add each item
TList.AddItem "some text"
Much more of course - you can even control the word wrap width.
You can download TList to try out for free 30 day evaluation at
www.Bennet-Tec.Com

Just click on the downloads link and then download the TList 7 OCX
installation kit. The install kit even includes a few Access
samples.

For specific details on Access compatibility check out the
Compatibility page on our web site.

Drop me a note by e-mail and let me know
if this looks like it will meet your needs or not.

I'll be happy to answer any other questions you may have on TList.


* * * * PLEASE INCLUDE COPY OF THIS MESSAGE WITH
YOUR REPLY

Jeff Bennett
(e-mail address removed)

* Bennet-Tec Information Systems, Inc
* 50 Jericho Tpk, Jericho, NY 11753
* Phone 516 997 5596, Fax - 5597
* RELIABLE Components Make You Look Sharp!
* TList/Pro * ALLText HT/Pro * MetaDraw *
* Custom Software Development Services Too.
* WWW.Bennet-Tec.Com

=================== ===================
 
Back
Top