adding subitems to MsFlexgrid?
i searched pscode and i found one example, but it's kinda hard to understand. i also search this fourm, and it doesnt seem like anyone has asked this question before, so i'll ask...
how do you add subitems to msflexgrid? i can only add one item, and if i try to add another one, it goes to the next line. what i want is to add subitems.
1 Attachment(s)
Re: adding subitems to MsFlexgrid?
Specify the row and column in the textmatrix() property.
VB Code:
with flexgrid
.textmatrix(1,1) = "First col"
.textmatrix(1,2) = "Second col"
end with
Try out this app. It has a lot of tips in it.
Re: adding subitems to MsFlexgrid?