Yet another version question

  • Thread starter Thread starter Bradley Plett
  • Start date Start date
B

Bradley Plett

We have two development machines which, to the best of my knowledge,
were set up identically. However, they are clearly NOT identical. We
have a project that, if we compile it on one machine, everyone else
can run it, but if we compile it on the other machine, everyone else
gets an exception. We're having some trouble figuring out what's
different. Is there some way, looking at the binary files (i.e. the
exe and associated dll's), that I can tell what's different between
the two machines?

Thanks!
Brad.
 
Bradley,
Is there some way, looking at the binary files (i.e. the
exe and associated dll's), that I can tell what's different between
the two machines?

I would start by running ILDASM on both executables to get the IL
Assembler code as text, then use a diff tool on these source files to
detect any differences.



Mattias
 
Thanks a lot! This did, eventually, get me to notice that the two
machines had different versions of the Oracle client installed.
Problem solved. :-)

Brad.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top