I have noticed that in your form theme file, whatever-form.tpl.php , when you omit
<?php drupal_render($form); ?>
the only parts of the form that are rendered is what you specified - so I can also omit all of these lines:
<?php $form['title']['#access'] = FALSE; ?>
<?php $form['body']['#access'] = FALSE; ?>
<?php $form['menu']['#access'] = FALSE; ?>
<?php $form['revision_information']['#access'] = FALSE; ?>
<?php /* ... etc ... */ ?>
I wanted to do this so that when I install modules (say Books), I don't have to worry about going back to all of my custom forms and then adding the corresponding "hide this section!" line:
<?php $form['book']['#access'] = FALSE; ?>
Is it okay to omit drupal_render($form) ? Submission, Validation, etc will be okay?