Search found 109 matches

by ColleenKobe
Wed Aug 09, 2023 2:59 pm
Forum: Compiler / Linking / IDE Related
Topic: Need install programs for old versions of wxWidgets and MinGW
Replies: 4
Views: 1545

Need install programs for old versions of wxWidgets and MinGW

I cannot get an EXE of my CodeLite workspace to build using the following versions of software, which AFAIK are the latest-and-greatest of all three. CodeLite 17.3.0 MinGW unknown, but whatever downloads from https://sourceforge.net/projects/mingw/ wxWidgets 3.2.2.1 In my CodeLite workspace, I have ...
by ColleenKobe
Thu Aug 03, 2023 5:53 pm
Forum: Compiler / Linking / IDE Related
Topic: What to Set Environment Variables to
Replies: 19
Views: 3266

Re: What to Set Environment Variables to

ONEEYEMAN and PB, I realized that I confused the words STATIC and SHARED in my original build. I've rerun the build: instead, I used library-shared-parallel.bat as-is, without edits. It appears in PB's book "PB’s Guide to Starting with wxWidgets on Microsoft Windows with MinGW and Code::Blocks ...
by ColleenKobe
Thu Aug 03, 2023 1:00 pm
Forum: Compiler / Linking / IDE Related
Topic: What to Set Environment Variables to
Replies: 19
Views: 3266

Re: What to Set Environment Variables to

Hi, PB, Thank you so very much for your book! I've completed up to the end of Chapter 3 and rebuilt my workspace using your directions. Most everything worked as described, it fixed most of my problems, but I do still have one show-stopping problem left: I don't get the release version files when I ...
by ColleenKobe
Mon Jul 31, 2023 12:29 pm
Forum: Compiler / Linking / IDE Related
Topic: What to Set Environment Variables to
Replies: 19
Views: 3266

Re: What to Set Environment Variables to

PB, But if you are using CodeLite (I am not really familiar with it), maybe it ships with a compiler and/or recommends one? I posted a question on the CodeLite forum https://forums.codelite.org/viewtopic.php?f=11&t=5205 and received an answer from Eranif. I don't exactly know what Eran Ifrah's r...
by ColleenKobe
Sat Jul 29, 2023 2:38 pm
Forum: Compiler / Linking / IDE Related
Topic: What to Set Environment Variables to
Replies: 19
Views: 3266

Re: What to Set Environment Variables to

Dear ONEEYEMAN, I come to this forum because people like yourself know far more than I do about how wxWidgets and MinGW and all the other software platforms work. FWIW, I did see that those are two commmands separated by a forward slash. I assumed that it was some arcane shortcut that the experts kn...
by ColleenKobe
Sat Jul 29, 2023 2:36 pm
Forum: Compiler / Linking / IDE Related
Topic: What to Set Environment Variables to
Replies: 19
Views: 3266

Re: What to Set Environment Variables to

Dear PB, Secondly, the error may come from your mingw distribution being too. Which one are you using? Too what? Old? That could be. I've tried the following versions: 1. The one that is downloaded from https://sourceforge.net/projects/mingw/. I don't know where to find the version number with this ...
by ColleenKobe
Fri Jul 28, 2023 3:04 pm
Forum: Compiler / Linking / IDE Related
Topic: What to Set Environment Variables to
Replies: 19
Views: 3266

Re: What to Set Environment Variables to

Hi, ONEEYEMAN, Thank you for answering the question I hadn't formulated yet. :-) I put the two commands you gave me into a Windows batch file, edited the first line to reflect the different wxWidgets directory name in my installation (C:\wxWidgets-3.2.2.1). I also added directories to the system pat...
by ColleenKobe
Thu Jul 27, 2023 2:54 pm
Forum: Compiler / Linking / IDE Related
Topic: What to Set Environment Variables to
Replies: 19
Views: 3266

Re: What to Set Environment Variables to

Building and installing wxWidgets on Windows is trivial (as it does not have external dependencies), all you need is to decide which configuration use (e.g., shared vs static). Cool!!! Got a web page that defines the differences between shared and static? And how to build wxWidgets accordingly? And...
by ColleenKobe
Thu Jul 27, 2023 12:08 pm
Forum: Compiler / Linking / IDE Related
Topic: What to Set Environment Variables to
Replies: 19
Views: 3266

Re: What to Set Environment Variables to

Hi, PB. Thanks for your reply to my question. Now I know what WXWIN should be set to. As for WXCFG, I don't use wx-config, so I'll start out by leaving it out of the environment variable list. In answer to your question, "What do you need those system environment variables for?": *I* don't...
by ColleenKobe
Wed Jul 26, 2023 3:21 pm
Forum: Compiler / Linking / IDE Related
Topic: What to Set Environment Variables to
Replies: 19
Views: 3266

What to Set Environment Variables to

Hi. I'm trying to build my projects that use wxWidgets, but I keep getting "file or directory not found" errors. I think I have these environment variables set to the wrong values. WXCFG WXWIN What is WXCFG supposed to point at? A directory? What files are supposed to be found in that dire...
by ColleenKobe
Mon Sep 19, 2022 9:10 pm
Forum: C++ Development
Topic: Need an AtoI for Numbers up to 2**33
Replies: 2
Views: 338

Re: Need an AtoI for Numbers up to 2**33

Thank you!
by ColleenKobe
Thu Sep 15, 2022 12:14 pm
Forum: C++ Development
Topic: Need an AtoI for Numbers up to 2**33
Replies: 2
Views: 338

Need an AtoI for Numbers up to 2**33

I need to be able to translate a string in a wxTextCtrl field into a number that's up to (2**33)-1, or: // (2**33)-1 = 8589934591 (or, shown with commas: 8,589,934,591) wxAtoI only translates numbers up to 2,147,483,647, or (2**31)-1. Can anyone give me the name of a string translator that can retur...
by ColleenKobe
Sat Feb 05, 2022 5:39 pm
Forum: C++ Development
Topic: Can't compile wxIntegerValidator code
Replies: 1
Views: 208

Can't compile wxIntegerValidator code

Hi. I'm using wxCrafter to generate my GUI code, so I'm posting this message here. I have four wxTextCtrl fields that all must allow ULONG (unsigned long) integers as inputs. I'm having the same problem with all four. I looked for ways to limit my wxTextCtrl field i/o to just integers, and I learned...
by ColleenKobe
Wed May 05, 2021 5:39 pm
Forum: C++ Development
Topic: How to Hide a wxFrame using "X" (Close Window) button
Replies: 5
Views: 1882

Re: How to Hide a wxFrame using "X" (Close Window) button

Hallelujah! Thank you, doublemax!!! What a refreshingly easy fix! Works perfectly now.

Thank you so much!!!

Colleen
by ColleenKobe
Wed May 05, 2021 4:59 pm
Forum: C++ Development
Topic: How to Hide a wxFrame using "X" (Close Window) button
Replies: 5
Views: 1882

How to Hide a wxFrame using "X" (Close Window) button

Hi. I have a wxFrame window I would like to close using the "X" in the upper right corner. However, I don't want to delete the window. I just want to turn it off, as in the code snippet below. void Processing_Monitor_Class::pm_Update_Show (bool Off_or_On) { Local_PM_ptr->Show (Off_or_On); ...