I don't think there's much you can do about this. I've noticed the same problem: the IDE likes to rearrange things for seemingly no apparent reason. Some things I've noticed:

  - When you use the SSTab control, VB
    likes to rearrange properties for
    tabs, especially the TabEnabled
    property.
    
  - For project files, it randomly
        rearranges the order in which files
        appear and I think I remember seeing
        cases where similar file types are
        not always grouped together and end
        up mixed in with the project
        properties. You don't have
        much control over this, unless you run all your VBP's through some type of sanitizer that groups like files together (forms in one group, modules in another group, etc.) and sorts them alphabetically or something, so that they remain consistent. One possible way to handle this could be to write an IDE add-on that automatically does this everytime you save changes to a project file, or come up with some batch process that will just recurse over your source directories and clean up all the VBP's in one go.

    

  - The IDE seems to randomly change the
        case of things; this seems to happen
        frequently to project references.
        Sometimes they are output in lower
        case, and other times they are
        output in upper case. You can get
        around this by choosing "Ignore
        Case" when you diff files in
        SourceSafe.

  - Control coordinates, such
    Top, Left, Height, and Width, can differ between
    two revisions of the same form. This is due
    to different developers using
    different screen resolutions and/or
    different screen DPI settings while working on the same form.
    If you aren't doing this already, I
    highly recommend that you get
    everyone to develop using the same
    resolution and same DPI setting.
    The differing values are caused by rounding errors that
    occur when logical screen
    coordinates at different resolutions/DPI settings
    are converted to twips, the default
    coordinate space that VB uses for
    laying out forms. Additionally, while I'm on the topic, make
    sure everyone has their display set to 96dpi,
    because if you develop VB forms at
    120dpi, there is a really really good
    chance they won't display correctly
    on a display set to 96dpi.

  - There are probably other things I
        can't remember right now...

As for the order of entire controls being changed in form files, you cannot and do not want to mess with that. The order that the controls appear in a form file determines their Z-order on the form. If the order of the controls changes in the .frm file, this will change their relative Z-order on the form, which could lead to unintended results in how your forms are displayed.