P
Peteroid
As I recall VC++ NET has a feature that let's one build an install 'package'
from a (managed) C++ project. This is important, as I found out the hard way
that my application will run on some systems right off the CD ROM disc, on
other machines it comes up with a 'program didn't initialize properly"
message.
It runs off the CD ROM on my system perfectly with no requirement other than
to double-click the application's EXE file... (PS, I've made sure there are
no absolute addresses in the code, in fact it only needs an ICOn file, which
it locates during executiuon by way of first figuring out where the EXE file
is, and then assuming (correctly) the ICOn file is in the same directory).
And, like I said, it DOES work directly off the CD ROM on other people's
systems too, just not all of them (for example, it doesn't work at Kinko's,
I tried as an experiment)...
Or, stating the desire more generally, how do I get my application to run
off a CD ROM disc on anybody's (modern Windows) system (e.g. some file I
copy to some directory, possibly a dll)?
Thanks!
[==Peter==]
from a (managed) C++ project. This is important, as I found out the hard way
that my application will run on some systems right off the CD ROM disc, on
other machines it comes up with a 'program didn't initialize properly"
message.
It runs off the CD ROM on my system perfectly with no requirement other than
to double-click the application's EXE file... (PS, I've made sure there are
no absolute addresses in the code, in fact it only needs an ICOn file, which
it locates during executiuon by way of first figuring out where the EXE file
is, and then assuming (correctly) the ICOn file is in the same directory).
And, like I said, it DOES work directly off the CD ROM on other people's
systems too, just not all of them (for example, it doesn't work at Kinko's,
I tried as an experiment)...
Or, stating the desire more generally, how do I get my application to run
off a CD ROM disc on anybody's (modern Windows) system (e.g. some file I
copy to some directory, possibly a dll)?
Thanks!
[==Peter==]