Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. jhopper

    linking issues

    FYI I ended up pulling the application into 3 seperate application (there were three parts to it), got each of them working fine, and then merged them all togeather. At that point the problem kinda went away. not real sure why, but I think it has to do with the order that I was including things.
  2. jhopper

    linking issues

    I am writing an application in Visual Studio 6, c++, and am getting the following linking error (and several others like it) libcpmt.lib(iostream.obj) : error LNK2005: "public: __thiscall std::ios_base::Init::Init(void)" (??0Init@ios_base@std@@QAE@XZ) already defined in...
  3. jhopper

    Destructor deleting string: Should be easy, but...

    I also have seen it written as delete []myArray; does that make a difference?
  4. jhopper

    Destructor deleting string: Should be easy, but...

    I couldn't find it anywhere in the helps, but might it help if you do delete[SIZE] instead? that way it doens have to guess at how big it is. I prefer to use stings instead. They then handle their own problems most of the time (though there are some functions that work better on char *) use...
  5. jhopper

    Service control Messages

    I was more hoping that there would be a comunications method that was part of the service framework. Can someone confirm that this does not exist?
  6. jhopper

    Service control Messages

    I have a service written in c++, running quite nicely. I also have a VB application that can start and stop the service, by sending the start and stop messages. However I would also like the VB app to report on the current status, and update settings on the run. I like to think I could use...

Part and Inventory Search

Back
Top