Html Listing

Is there an example on creating a html formatted listing that would have button that could perform an action next to each record. I have heard that this is the way to increase preformance instead of list views. All the examples in the crm are standard list views though.

Thanks,
Erich

I think Maarten gave a nice example here:

I have seen this example and it is very helpful. The only thing I need to be able to do is accociate a button with each record that could execute a method. For example in a list view (Invoice Listing)I have a button next to each record, this action diplays a showformindialog displaying the invoice.

I can see how the list is created and displayed, but how do you add a method that relates to each record?

Thanks,
Erich

Erich,

You put the code you want to repeat inside the loop (for each record).

It’s the part inside the “for” loop. That code will repeat for each row in the recordset.

Bob Cusick

Thanks Bob,

I got it to work, I had to declare the dynamic variables inside the loop not before.