Question: Is there a way to make the output of dsolve the same everytime?

Hello, I am using dsolve to solve a set of coupled differential equations. After they are solved I do some further manipulations on them. Every time I restart maple and execute the document, maple solves the equations but puts them in a different order and has the constants mixed up. Thus I have to keep hitting the (!!!) button until I happen to get the solution I had when I did the further manipulations. Is there a way to proscribe maple's output to a certain order? Here is an example: One time the solution will look like: {F(x) = f(x)*_C1 + g(x)*_C2, G(x) = m(x)*_C3 + v(x)*_C4} and the next time I hit the (!!!) button I get this (even though nothing at all has changed on the document): {G(x) = m(x)*_C4 + v(x)*_C3, F(x) = f(x)*_C2 + g(x)*_C1} then again I execute the whole document and get this! {G(x) = m(x)*_C1 + v(x)*_C2, F(x) = f(x)*_C3 + g(x)*_C4} Since the rest of the document is aimed at finding the constants using 'solve', I need the solution from 'dsolve' to be consistent so I don't have to scroll through the possible combinations of solutions and constants as it were. Does anyone know how to make maple put the solutions in a particular order (F(x) then G(x)) and make the constants appear in a specific order? Please help!
Please Wait...