You can P/Invoke the ShellExecuteEx API function and pass the filename of the document to be opened. You'll find ShellExecuteEx available in the WinAPI library on the site, just add as a reference to your application and use the following code:-
OpenNETCF.WinAPI.Core.ShellExecute("\\My Documents\\score.pxl", "");
Peter Foot, eMVP