Generally - most glyphs are encapsulated in the app or its associated DLLs.
You can try the quick and dirty solution of extracting the glyphs as bitmaps or icons using an app like IconSucker Standard, and loading them individually for each control.
A slightly more elegant solution is to set up an image library with [tt]TImageList[/tt] in your app from these. Doubleclick on it and add the icons (.ICO or .BMP). Then use the resultant images with the Image property of the control - basically, you can change the images at run time.
Or you can get some icon libraries - there are stacks out there - as someone has already extracted the glyphs for you.
Finally, and I haven't done it, you could try and read the DLL with the icons (MSOERES.DLL) directly and load the icons. Though this may change as M$ changes its O$.
Cheers
Chris ;-)