Carl Karsten wrote: > My uLoop util looks like it is almost done: The test method works, the UI > mostly works (need some help putting a column of checkboxes in place of a > column > of "True", and I need to add more columns, but that can wait.)
Currently (and this should be changed to be smarter) you need to explicitly tell dColumn what the datatype of the field is, to get it to realize "hey, it's bool value, let's show a checkbox instead". Try this: # say the bool col is col 2: col = grd.Columns[2] col.DataType = "bool" (or set it in the dColumn constructor) -- pkm ~ http://paulmcnett.com _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-users Searchable Archives: http://leafe.com/archives/search/dabo-users This message: http://leafe.com/archives/byMID/dabo-users/[EMAIL PROTECTED]
