Search found 7 matches

by poweruserm
Tue Jul 23, 2019 5:12 am
Forum: Compiler / Linking / IDE Related
Topic: How do I know which one (or what group) of .a files to link to?
Replies: 6
Views: 1678

Re: How do I know which one (or what group) of .a files to link to?

Thank you very much.

As a Windows person, wx-config is no option for me.

I hand't noticed that classed have a Library: entry.
I was expecting something like that entry to be at the very
top of the class documentation,which is why I havn't seen it.

Thank you guys very much for the clarification.
by poweruserm
Tue Jul 23, 2019 3:38 am
Forum: Compiler / Linking / IDE Related
Topic: How do I know which one (or what group) of .a files to link to?
Replies: 6
Views: 1678

How do I know which one (or what group) of .a files to link to?

I am using Windows 10 64 bit home edition. I am using the TDM C++ Compiler 5.1.2 for Windows. I am using Code::Blocks 17.12. By means of the online web documentation, or the download copy of that, or otherwise, if I wish to link to a particular class, when doing my wxWidgets programming, how do I kn...
by poweruserm
Sat Jan 12, 2019 3:50 am
Forum: General Development
Topic: Component Building.
Replies: 2
Views: 1775

Component Building.

I have been trying to build a wxWidgets compatible graphs library, which is apparently complete for a number of the graphs, but not for the rest of them. I am trying to build this library for 64 bit Windows, and simply put, am at the point of "cannot possibly succeed". i am talking about t...
by poweruserm
Tue Dec 18, 2018 11:28 am
Forum: Open Discussion
Topic: Basic Question about Macro usage.
Replies: 6
Views: 13434

Re: Basic Question about Macro usage.

It's okay, the old approach is what I have been after. I already did know about Bind(). I also knew about #define as well. It's relevant for me if it is just easier to refer to the wxWidget macros. I just need to use #include on the right class, and be careful when relating back to c++ general synta...
by poweruserm
Tue Dec 18, 2018 10:56 am
Forum: Open Discussion
Topic: Basic Question about Macro usage.
Replies: 6
Views: 13434

Re: Basic Question about Macro usage.

I am in fact at this point, but am still having some compilation problems. I am on 64 bit Windows with 64 bit TDM (stable, latest) using Dev-C++. I am trying to use a fragment from an example out of the book, 'Cross-Platform GUI Programming with wxWidgets'. page 21. This is pretty well the earliest ...
by poweruserm
Tue Dec 18, 2018 9:57 am
Forum: Open Discussion
Topic: Basic Question about Macro usage.
Replies: 6
Views: 13434

Re: Basic Question about Macro usage.

How do I #include the

DECLARE_EVENT_TABLE()

Macro? What entry do I perform at the top
of my source code to support this macro?

Do I need to make any other alterations for this to compile
and run as expected, where it is inserted into C++ source code?
by poweruserm
Tue Dec 18, 2018 4:41 am
Forum: Open Discussion
Topic: Basic Question about Macro usage.
Replies: 6
Views: 13434

Basic Question about Macro usage.

If I want to compile in a C++ macro invocation, -how do I include the Macro's name? -can I invoke the Macro's name like any other C++ function or method, just including a ; at the end? -How on earth are Macro calls without a ; at the end compiling? If I am using 64 bit TDM C++ compiling on 64 bit Wi...