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 TouchToneTommy 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: *

  • Users: Wereotter
  • Content: Threads
  • Order by date
  1. Wereotter

    Template-Controled Constructor Use without PTS

    I think I've encountered a problem beyond my template metaprogramming skills... :) Here's the deal: I need to choose a constructor (preferrablly at compile time) based upon an argument to my template. class Example1 { Example1(int a); }; class Example2 { Example2(int a, bool b); }; typedef...
  2. Wereotter

    Missing API definition?

    I am using Visual C++ 6.0. I would like to use this function: SHGetViewStatePropertyBag Unfortunately, my header files do not define this function. Does anyone know where I can find the constants for the dwFlags parameter?
  3. Wereotter

    Bound Member Functions

    I am using a C-based library (sqlite) from my C++ program. This library includes a function which takes a pointer to a callback. I'd like to use a member function as the callback. sqlite3_exec(sldbDatabase, "", &(this->AddFarmFromRow), this, &sError); The first parameter passed to the callback...
  4. Wereotter

    Enumerating users (Local and domain) on multiple OS's

    I'm trying to figure out how to enumerate users on several versions of Windows--2000 and XP at the minimum. I've looked at NetEnumUsers, but this appears to only be for XP. I need to retrieve the user name and the registry key representing HKEY_CURRENT_USER. Any help would be appreciated... :)
  5. Wereotter

    Someone who WANTS spyware. :)

    I'm looking for the infector for this, as I'd like to try my hand at an automatic removal tool. I have tried the list of known CWS domains from SpywareInfo, but found nothing. http://www.tech-archive.net/Archive/Win2000/microsoft.public.win2000.general/2004-09/3100.html
  6. Wereotter

    Creating a lient-side download

    I have a rather unusual problem: I routinely write small programs (800 bytes) that I wish to post on another forum. This forum does not support file uploads. I would like to not have to worry about a bunch of files accumulating on a web server somewhere, so I'd like to embed the file in the...

Part and Inventory Search

Back
Top