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

Search:

Type: Posts; User: Albatross

Page 1 of 5 1 2 3 4

Search: Search took 0.04 seconds.

  1. Re: Problem Running CMake on Windows11 with MinGW compiler

    Thank you for the help. I'll try this out.
  2. Problem Running CMake on Windows11 with MinGW compiler

    I have trouble making CMake do its thing.

    I have Win11 and am using MinGW for the c++ compiler. I have no Visual Studio.

    --------------------------------------------

    The CMakeLists.txt file...
  3. Re: MinGW-w64 download delivers strange material

    Problem Solved : the MinGW installed was a very old version.
    And using a simple copy of the old vQt folder was sufficient.
  4. Re: MinGW-w64 download delivers strange material

    That second one just might do it for me.
  5. MinGW-w64 download delivers strange material

    I have a new win11 laptop and want to install the latest version of mingw-w64
    for my programming adventures.
    I use g++ in the mingw thing to compile my C++project in Eclipse IDE.
    I've been doing...
  6. Replies
    5
    Views
    5,569

    Re: Contact from VS C++ to Excel VBA

    I found a solution which is much, much easier than what your links put me into.
    Going to the links you offered I was shocked at the complexity involved when this excel automation philosophy was...
  7. Replies
    5
    Views
    5,569

    Re: Contact from VS C++ to Excel VBA

    I don't know what excel automation is.
    I learned C++ in the 1970s, really.
    I use a third party software "libxl" to read cells write cells and open/save workbooks/sheets.
  8. Replies
    5
    Views
    5,569

    Contact from VS C++ to Excel VBA

    I've got an app written in Visual Studio C++ that deals with excel lines of data and presents it in a Form.

    I now need to print the data. A while back I wrote this app in VBA and printing was a...
  9. Replies
    0
    Views
    2,705

    Nomenclature of 32 and 64 bit Things

    I have this graphics program in C++ working with 32 bit MinGW and Qt Libs.

    Now I'd like to move it up a notch to the 64 bit world.

    I'm developing it in Eclipse Neon-3 so I'm looking for 64 bit ...
  10. Re: Eclipse Ganymede (CPP) and Makefile Variables

    Thanks a bundle.
    That clears up a lot!
  11. Eclipse Ganymede (CPP) and Makefile Variables

    I am experimenting with Eclipse Ganymede, the IDE for C++ programming and am trying to create a project with makefiles.

    The IDE gives me a nice makefile template right at the start :


    ...
  12. Replies
    3
    Views
    1,104

    Re: An Interface Instantiated by the Experts

    Got it now, thanks!
    I was calling the wrong function, one in MyClass and not in MyInterface !!
  13. Replies
    3
    Views
    1,104

    An Interface Instantiated by the Experts

    At the beginning I learned in Java that you cannot instantiate an interface.
    I've seen that this is only half true.


    public MyClass implements MyInterface {

    public void f1() {}
    ...
    }...
  14. Replies
    1
    Views
    1,661

    Re: Propagating MouseClick Event

    Mission accomplished.

    In another forum I learned that it is a terrible no-no to jump to the class XYZ without an instance of class XYZ.

    // MyTextCtrl.cpp
    BEGIN_EVENT_TABLE(MyTextCtrl,...
  15. Replies
    1
    Views
    1,661

    Propagating MouseClick Event

    I am trying to propagate an event from a TextCtrl up to its container, a DialogBox, however I am only partly successful.

    It's possible for the MyDialog to react to a EVT_LEFT_DCLICK event in...
  16. Replies
    2
    Views
    731

    Re: Includes in a vicious circle

    Very good Laserlight.

    Two days ago I thought the expression "forward declaration" was an indication of something gone wrong.

    I can hardly wait to try this out.

    Thanks a lot.
  17. Replies
    2
    Views
    731

    Includes in a vicious circle

    I have a rather large windows application here with about 5 classes.
    It is getting all tangled up.

    I'm using Eclipse for CPP with wxWidgets and mingw32 compiler.

    I have MyApp derived from...
  18. Replies
    0
    Views
    1,983

    VC++ 2008 and MySQL++

    Î'm surprised I haven't seen other posts concerning this.

    I have an XP system with VC++ 2008 and a MySQL 5.1 database.
    I was told the groovy way to connect was using a library called MySQL++...
  19. Import or Export a File for my Installation

    I've finished the application and can use Installation Wizard in VS C++ 6.0 to generate an installation disk (1.44) however....

    Part of the installation requires planting a very specific Excel...
  20. Re: Using Qt in Linux, they speak different C++

    Right you are!!!
    There was no terminating semi-colon. It compiles in MFC now.
    Okay I accept it.

    But I can't see the use of it. Why not make a class?

    The use of virtual functions is to make a...
  21. Re: Using Qt in Linux, they speak different C++

    No, never have.
    I have tried to implements such syntax in a Windows MFC app
    and the compiler won't accept it. Why?

    here's what I had :


    // Abc.cpp: Implementierungsdatei
    //
  22. Using Qt in Linux, they speak different C++

    In a Linux programming environment
    this is part of what the "'Hello World' on a GUI" example app
    generated.
    Another example of Qt redefining the C++ language?
    When does a structure contain...
  23. Replies
    4
    Views
    551

    Re: Reading a Dos File in the 21st Century

    The file is 600K so using an editor is too labour intensive.

    I went through about 20 files in the same directory and found nothing.

    I'm just curious why the beginning of the file has different...
  24. Replies
    4
    Views
    551

    Re: Reading a Dos File in the 21st Century

    I did that too. 0x97 0x98 0x99, in ascii and it didn't find anything
  25. Replies
    4
    Views
    551

    Reading a Dos File in the 21st Century

    1. With my Win2000 and VC6.0 I'm trying to find text in a Dos (Win3.1) executable, slugr.exe.
    I am looking for "abc" by seeking 0x97, 0x00, 0x98, 0x00, 0x99.
    No luck so far but it appears on...
Results 1 to 25 of 125
Page 1 of 5 1 2 3 4





Click Here to Expand Forum to Full Width

Featured