Kind of table

  • Thread starter Thread starter Tamir Khason
  • Start date Start date
T

Tamir Khason

I have to display kind-of table in Forms
The NORMAL way is to use DataGrid, BUT WHY? I need some kind of lookup to
show to user WITHOUT data in backend. Something like:
a | b | c | d ....q | w | i | r
1 | 2 | 3 | 4... 12 | 23 | 34 | 333
As you can see I have to ajust | (pipe) positions in order to align upper
and lower rows. So I can do it as custom control within 10 minuts, but Is
something ready for such functionality?

TNX
 
Hi Tamir,

First of all, I would like to confirm my understanding of your issue. From
your description, I understand that you need to put some data to a control
other than DataGrid and make each column aligned. If there is any
misunderstanding, please feel free to let me know.

I agree with Peter's suggestion that we can use ListBox instead of
DataGrid. Turn MultiColumn property to true will do. I hope this helps.

If anything is unclear, please feel free to reply to the post.

Kevin Yu
=======
"This posting is provided "AS IS" with no warranties, and confers no
rights."
 
Hi Tamir,

I'm sorry that I made a mistake in my last post. The control has to be
ListView. ListView has headers while ListBox doesn't. Also, we have to set
the View property to Details. HTH.

Kevin Yu
=======
"This posting is provided "AS IS" with no warranties, and confers no
rights."
 
Back
Top