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. CruelIO

    How to use PostThreadMessage to close internet explore

    I ended up making an enumeration of the windows alot like http://simplesamples.info/Windows/EnumWindows.php.
  2. CruelIO

    How to use PostThreadMessage to close internet explore

    Hi Im trying to start iexplore.exe let it run for 5 seconds and then close it again. iexplore opens just fine however it doest close when i call the PostThreadMessage can any one see what im doing wrong here is the code: CString IEPath = "C:\\Program Files\\Internet...
  3. CruelIO

    How to change content of af CString in a const method

    Hi again I figured it out! However it might not be the best way. But here goes CString* aa = (CString*)(&m_Id); aa->Empty();
  4. CruelIO

    How to change content of af CString in a const method

    Hi i have the following method on my objects obj BOOL obj::CloseRecord() const { //Do something //Empty the member variable m_Id (is a CString) static_cast<CString>(m_Id) = ""; //<--Doesnt work //Empty set the member variable m_Item = 0 static_cast<int>(m_Item) = 0; //<---Works fine } The var...
  5. CruelIO

    Upgrade SQL 6.5 to 2000

    Hi there We have to upgrade our old SQL 6.5 to an SQL 2000 platform. The 3 main reasons for the upgrade is 1) Better performance 2) Better stability 3) More nestinglevels However to do the upgrade as easy as possible its been choosen put the SQL 2000 server into 6.5 mode. But how does that...

Part and Inventory Search

Back
Top