Re: Is a multidimensional Label control possible?
- From: "Bob Butler" <noway@xxxxxxxxxxx>
- Date: Thu, 2 Aug 2007 12:56:43 -0700
"Jacob" <jacob_address@xxxxxxxxxxx> wrote in message news:e0Hr3nT1HHA.5836@xxxxxxxxxxxxxxxxxxxxxxx
<cut>
Is something like that possible? Is there any (third party) control that will do what I need?
You can always use a single index and calculate row*totalcolumns+column to find the right one
You can also create your own array
dim mylabels(1 to 2, 1 to 4) as label
for r=1 to 2
for c=1 to 4
set mylabel(r,c)=label1((r-1)*4+c-1) ' may be off depending on how they are set up
next
next
the events will still give you the single index but it's easy enough to calculate the row & col
.
- References:
- Is a multidimensional Label control possible?
- From: Jacob
- Is a multidimensional Label control possible?
- Prev by Date: Re: Is a multidimensional Label control possible?
- Next by Date: Re: Textbox
- Previous by thread: Re: Is a multidimensional Label control possible?
- Next by thread: Re: Is a multidimensional Label control possible?
- Index(es):
Relevant Pages
|