I created a business object to retrieve all the lookup categories in my lookup_hdr table called BOLookupCategories. It has a method called GetAllCategories with this code:
{
loCommand.CommandType =
loCommand.CommandText =
}
I then dropped a strataframe listview on to my windows form and set its properties as follows:
BusinessObjectType: BOLookupCategories
Method to Execute: GetAllCategories()
Tag Field: luphdr_pk
When I run the form, my listview shows up empty. No errors. When I step through the code, it shows me that my business object is getting populated. This should be dead simple. So what stupid thing am I doing wrong?
TIA.
Marcia