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 Chriss Miller 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: PerFnurt
  • Content: Threads
  • Order by date
  1. PerFnurt

    Multiple platform builds

    Hiya, Is there any nifty way to have a Visual C++ 2005 project support multiple platforms? Ie I want to be able to use a different compiler /linker than the built-in ones. Actually I want to use both: Make a normal VS build, but also be able to perform a totally different build. One way...
  2. PerFnurt

    How to detect if w32time is synching?

    We get undesired side effects when w32time is slewing the computer, as part of the time-synching. Is there a way to determine if the computer is currently being slewed (so we can let it finish before we do whatever we wanna do)? Thanks /Per www.perfnurt.se
  3. PerFnurt

    My CMutex leaks memory

    Hiya, I've got a tiny problem. UINT MyThreadFunc(LPVOID pParam) { // ... CMutex mutex(FALSE, "MyMutexName"); while(somthing) { ... } } When the app. exits it report memory leaks in strcore.cpp (118). I've tracked it to the string param passed to the CMutex constructor. Somehow...
  4. PerFnurt

    MDB unnecessarily big?

    Hiya, Ive got an Access2000 MDB file that's grown quite a lot and Ive got the feeling its bigger than it has to. I've located the table requiring almost all space, some ~49 MB. It has some 6700 rows and has fields of types Text, Number, Date/Time and Memo. When I export it to an excel sheet...
  5. PerFnurt

    How to change the "Its now safe to turn off "message

    Hiya, I want to change the "It is now safe to turn off the computer" message displayed after shutdown. I don't want to do a automatic poweroff. Back in the old days there were some .sys files, but how can one tweak it in Win2000? Thanks /Per "It was a work of art, flawless, sublime...
  6. PerFnurt

    Analyzing C++ code using awk

    Hiya AWK gurus! I'm trying analyze C++ files, counting c-style casts and class definitions (possible more stuff in the future). All in all it works fairly well, but I have some problems. 1. Line by line parsing I have to make hacks to detect line breaked statements, like class Foo { where...
  7. PerFnurt

    Problem with IDispatchImpl

    Hiya, I'm attempting to implement the Visual Studio Application model in a small app that I can test add-ins with. All-in-all it worked fine, but then I thought I should do it nicer, more ATL-ish, but being fairly new to ATL (its also an exercise/excuse to work with ATL) I can't get the...
  8. PerFnurt

    How to disable #include "MyApp"

    Hiya, when I create a new class (Class View->New class...) the .cpp gets a #include &quot;TheMainApplication.h&quot; I find this amazingly annoying. Is there some way to disable that? Talking about VC++ 6 /Per if (typos) cout << &quot;My fingers are faster than my brain. Sorry for the...
  9. PerFnurt

    How to add non-ogx components to the gallery?

    I'm fiddling with code/class/file generation stuff and have so far mainly done it through add-ins and custom appwizards. However it seems that the right thing for me to do would be to make a &quot;custom&quot; component that can be used from the component gallery (Project->Add to...

Part and Inventory Search

Back
Top