Prev: 3 Missing
Next: Cumulative Update - May 2009
From: Jeff Johnson on 5 Nov 2009 11:40 "catharinus" <csvanderwerf(a)planet.nl> wrote in message news:8e4a6923-87ee-4c49-b892-5c00a7c388c7(a)d5g2000yqm.googlegroups.com... > Rick gave a solution of how to work with a Column that is defined as a > number or string. But that's not what I want. I want to define a > column as a number or string. Uh, what? "Rick told me how to do X, but I want to do X instead." > In listview you can do that very easily: > Me.ListView1.ColumnHeaders.Add(, , "Nr", 700).Tag = "Number" > Me.ListView1.ColumnHeaders.Add(, , "Word", 1700, 0).Tag = "String" > And after defining a column in this way, one can create a routine on > how to work with these columns, but that was not my question. You're not DEFINING anything above; you're simply adding some meta-data which you will then utilize later. Try looking into the ColAlignment property of the flex grid. If that isn't granular enough for you, look at the ColData property. It's virtually the same as using Tag, except you can only provide a Long value. That's not a big deal, as you can use that value as the index into an array of classes or structures which contain all the data you need. |