CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: S_M_A

Page 1 of 80 1 2 3 4

Search: Search took 0.13 seconds.

  1. Replies
    49
    Views
    140,972

    Sticky: Re: Input wanted: 3rd Party Products

    Oh, maybe I was a bit unclear regarding this. :(

    There's no Linux version of VS, you just install the cross platform tools. After the installation you will have both a VS compiler and gcc (and...
  2. Replies
    4
    Views
    4,225

    Re: Unit testing in C++?

    I like google test, it's an extremely powerful framework. https://github.com/google/googletest
    These days it's also supported by Visual Studio
  3. Replies
    49
    Views
    140,972

    Sticky: Re: Input wanted: 3rd Party Products

    Eh, VS has supported cross platform development since at least since 2017 (can't remember if also 2015 had it).

    I work more or less 100% with embedded software but I remember that a full...
  4. Replies
    1
    Views
    2,445

    Re: Question relating to TDM and Intel on Windows.

    I've never used TDM but as I understand it it's gcc based and according to this, https://software.intel.com/en-us/cpp-compiler-developer-guide-and-reference-microsoft-compatibility, Intel toolchains...
  5. Replies
    13
    Views
    3,708

    Re: Eliminating an odd bug

    Oh my... frankly, I think this code should be completely re-written. It's terribly hard to follow.
    Anyway, I'm guessing a bit here but it seem like this is a regular 'cut & paste but forgot to...
  6. Replies
    4
    Views
    7,414

    Re: How to convert a program to 64 bit?

    A quick search indicates that tcwin45 creates 16 bit applications and those will not run in a 64 bit Windows.

    Download a more up to date compiler instead. Visual Studio for instance...
  7. Replies
    6
    Views
    2,482

    Re: How to create .com file

    First of all you have to find an ancient 16-bit compiler. I think that the old Borland Turbo C++ suites now are available for free so go ahead and search.

    Then you have to find an OS that is able...
  8. Replies
    1
    Views
    2,918

    Re: windows headers and mingw

    Well all I can Think of at the moment is -i'path-to-commdlg.h'
  9. Re: How to get the following Mode 13 H C Code to work in Visual Studio 2015 Pro ???

    Just to add what's already said by STLDude, I think it's "safe" to assume that everything related to DOS irqs are obsolete these days. The time of DOS was a fun time but now it's gone...
  10. Replies
    2
    Views
    4,721

    Re: manage with open source library - import

    A third way is to open project properties.
    Add the path to the SeqAn library in Linker - General - Additional Library Dependencies
    and add the library name(s) you want to link with in Linker -...
  11. Replies
    6
    Views
    23,250

    Re: Which Widows do you prefer to use?

    I totally agree with 2kaud.
    It took a long time before it was allowed at the office but now I even have had my work machine upgraded from 7 to 10. :thumb::D
  12. Replies
    7
    Views
    3,061

    Re: winap Dialogbox ..

    2kaud, it's alright to have it as a static. I've tossed my old Petzold book in the bin many years ago so I don't know how it was done there but I remember having it static most times during my years...
  13. Replies
    12
    Views
    10,462

    Re: Reduction of the flash footprint

    Wow, yes that would be the ultimate solution but also require quite much extra work.

    Anyway, things have changed a bit. Now it's highly likely that the current cpu will be replaced with one with a...
  14. Replies
    12
    Views
    10,462

    Re: Reduction of the flash footprint

    Even though we don't need the destructors for the current target we want the code to be well behaved if/when re-used on other systems.

    Thanks for the response but for this issue I think we live in...
  15. Re: Reflection to execute a method implemented from interface

    Ok,it's friday and I've had a few beers but frankly I just get confused here. Anyway, shouldn't this post be in c#or some similar forum?
  16. Re: Code works only on computer, when it was compiled

    See http://msdn.microsoft.com/en-us/library/windows/desktop/ms684175(v=vs.85).aspx and in particular the return value & GetLastError part. It will tell you exactly why it doesn't work
  17. Replies
    12
    Views
    10,462

    Re: Reduction of the flash footprint

    Yes, neither exception handling nor RTTI are enabled. Enabling that completely overflows the flash. If I remember correctly that added 40-50k or so.
  18. Replies
    12
    Views
    10,462

    Re: Reduction of the flash footprint

    Thanks Codeplug.

    I tried -Os and that reduced the footprint about 10% so that might be a way if the resulting speed is enough. Some parts of the code is speed critical so one way might be to use...
  19. Replies
    12
    Views
    10,462

    [RESOLVED] Reduction of the flash footprint

    I'm currently involved in an embedded (cortex M3) C++ project where we're about to run out of flash.

    A quick check of the map file give that, in our case, the destructors consume about 10-15% of...
  20. Re: Compatibility of Borland C++ Builder 6.0 and Windows 8.1

    That compiler is ancient so you should really considering updating to a newer version!

    Anyway, MS has a compatibility checker here...
  21. Re: Memory leak detection tool with Windows7 64 bit Visual Studio

    As AlexF says it's enough to call CrtSetDbgFlag in main to get leakage information. If you wan't to get more information (such as allocation line of code) you have to do the other stuff he mentions
  22. Replies
    4
    Views
    3,646

    Re: What do developers do all day?

    Rejecting requirements as contradictory to each other or unclear 30%...
  23. Replies
    1
    Views
    4,527

    Re: Makefile options to compile for 64 bit

    -m64 should be sufficient if you have a multilib (that contains standard libs in both 32/64 bits) gcc installed
  24. Thread: Windows 8

    by S_M_A
    Replies
    14
    Views
    10,189

    Re: Windows 8

    Ah, well I don't have a MSDN subscription. My employer think it's too expensive... :(

    The reason I used sysprep was that I built a new machine and didn't want all temporaries and other junk to...
  25. Thread: Windows 8

    by S_M_A
    Replies
    14
    Views
    10,189

    Re: Windows 8

    Can you elaborate that a bit?

    If possible I prefer not to have to make a complete reinstall.
Results 1 to 25 of 2000
Page 1 of 80 1 2 3 4





Click Here to Expand Forum to Full Width

Featured