Self-Solved. Adding this:
// query_posts('showposts=1&cat='.get_cat_ID(dp_settings('featured')));
$sticky=get_option('sticky_posts') ; // Llistar post fixat
query_posts('p=' . $sticky[0]); // id. anterior
And those lines, on the second case:
$args = array(
'posts_per_page' => 9,
'post__not_in' => get_option('sticky_posts'),
'caller_get_posts' => 1
);
query_posts($args);
Steve,