I'm currently using the template fix Customizing Profile Nodes" and it has worked great.

However, one of the pieces of code allows me to insert teasers from a filtered set up nodes for a specific user. So, if I want to list a teaser of a specific users blog entries I can do so. The code is below:

<?php $nlimit = 10; ?>
<?php $userid=$user->uid; ?>
<?php $result1 = pager_query(db_rewrite_sql("SELECT n.nid, n.created FROM {node} n WHERE n.status = 1 AND n.uid = $userid AND n.type = 'flexinode-1' ORDER BY n.created DESC"), variable_get('default_nodes_main', $nlimit)); ?>
<?php while ($node = db_fetch_object($result1)) {$output2 .= node_view(node_load(array('nid' => $node->nid)), 1);}; ?>
<?php print $output2; ?> 

Note that you can change the n.type to any type you want.

My problem is that I don't like the way the teaser page looks. However, in the views module there is a tabular view that I like a lot more and I would like to change it to that. I noticed that the node_view() function is what displays the look. Is there a way to change the function name or any other change to get the tabular view.

Thanks in advance.