No prob bcham!
In the Tiger Woods 2006 example it shows converting this line
02 00 05 00 00 C7 00 00 04 00 00 C3 8B 4C 24 08 8B
and overwrite it with this in order to support 1680 x 1050:
02 90 06 00 00 C7 00 1A 04 00 00 C3 8B 4C 24 08 8B
So to support the 1440 x 900 res that you're looking for you need to use a decimal to hexidecimal calculator. There should be one in your hex editing program but i'll do this one for ya.
1440 (Decimal) = A005 (Hex)
900 (Decimal) = 8403 (Hex)
So to try your res you must first make sure that your game is set to 1280 x 1024, then exit the game. Run the hex editor and open up the dxwrap.dll file. Perform a search for the hex line below.
02 00 05 00 00 C7 00 00 04 00 00 C3 8B 4C 24 08 8B
and replace it with this line...
02 A0 05 00 00 C7 00 84 03 00 00 C3 8B 4C 24 08 8B
Hopefully this will work for you. I have never tried that res before but so far many others have worked for me.
thanks for your time,it worked.now the game runs at 1400x900.and looks a lot better, perfect now.cheers.