At 06:09 PM 12/15/99 -0700, you wrote: >Hello all, > I am attempting to view an object code file and I would like to see its >contents in hexadecimal. Does anyone here know of any readers working in the >win98 environment that would allow this to be done? > Thanks - Keith Causey Some development environments allow you to do this... like Visual C++, for example. But if you are looking for a quick way to do it, open a DOS window and type: debug where is the name of the file you want to use. The type the letter "d" to dump the contents of the file in hex. Doing one d will show you the first few lines, doing d repeatedly will continue to display the lines throughout the file. John Hansen