Hi gungfukid,
This will open Photo Editor on its own:
Call Shell("C:\Program Files\Common Files\Microsoft Shared\PhotoEd\PHOTOED.EXE", vbNormalFocus)
This will open Photo Editor with a specified image file:
Call Shell("""C:\Program Files\Common Files\Microsoft Shared\PhotoEd\PHOTOED.EXE"" ""C:\my documents\my pictures\Cliff in Clouds.jpg""", vbNormalFocus)
Edit the above if necessary if PHOTOED.EXE is in a different location on your PC.
Bill