Search found 11 matches

by ghjmaui
Tue Dec 29, 2015 2:20 am
Forum: Platform Related Issues
Topic: wx executables won't run under Win10
Replies: 8
Views: 2612

Re: wx executables won't run under Win10

Hello- I was wondering if I could request a reality check. I would like to request if anyone with Win10 could post a minimal.exe to sendspace.com that they built using mingw to build both the wx 3.02 libraries and the mimimal.exe using plain "mingw32-make -f makefile.gcc", and they are sur...
by ghjmaui
Fri Dec 25, 2015 5:58 pm
Forum: Platform Related Issues
Topic: wx executables won't run under Win10
Replies: 8
Views: 2612

Re: wx executables won't run under Win10

Hello and Merry Christmas to one and all! It gets curiouser and curiouser... The good news is that all those dlls are in fact found on my machine. The first two, libgcc_s_dw2-1 and ligstdc++-6 are in the mingw/bin directory, NOT mingw/lib, as I would have imagined. The last one, libgcc_s_sjlj-1, is ...
by ghjmaui
Thu Dec 24, 2015 9:56 pm
Forum: Platform Related Issues
Topic: wx executables won't run under Win10
Replies: 8
Views: 2612

Re: wx executables won't run under Win10

Hello once again. The minimal.exe is here: https://www.sendspace.com/file/j88sf8 Note that every time I try to run the executable, I get them all listed in the process listing (get-process) with a handle of zero, so nothing can kill them, so they look like zombie processes, even though I can't even ...
by ghjmaui
Thu Dec 24, 2015 6:20 pm
Forum: Platform Related Issues
Topic: wx executables won't run under Win10
Replies: 8
Views: 2612

Re: wx executables won't run under Win10

I used mingw, which, although it appears to not have changed for years, I freshly downloaded it also from Sourceforge. I just used "mingw32-make -f makefile.gcc" without the "BUILD=..." or other parameters to build the example executablesm so all the debug stuff should be in it (...
by ghjmaui
Wed Dec 23, 2015 9:38 pm
Forum: Platform Related Issues
Topic: wx executables won't run under Win10
Replies: 8
Views: 2612

wx executables won't run under Win10

Hello- After having found that my wx2.8 executables built under Win7 a while back would no longer run after I upgraded to Win10, I installed the newest wx3.02, and after building the libraries, I went to /samples/minimal per the install instructions and built that also. It appears to have built just...
by ghjmaui
Wed Dec 23, 2015 12:53 am
Forum: Compiler / Linking / IDE Related
Topic: missing libraries
Replies: 2
Views: 1808

Re: missing libraries

Excuse me, but I should have added that after unzipping 3.02, I tried to just build something in /samples/ ("mingw32-make -f makefile.gcc") and it said that it couldn't find the include/wx/setup.h file, so I copied setup_redirect.h to setup.h. That is when it compiled fine but then coupldn...
by ghjmaui
Wed Dec 23, 2015 12:38 am
Forum: Compiler / Linking / IDE Related
Topic: missing libraries
Replies: 2
Views: 1808

missing libraries

Hello- I had built a bunch of stuff under wx2.8 using mingw32 a while ago and went away. Later I upgraded from Windows 7 to Windows 10, and having just come back to building wxwidgets, found that none of my stuff would run. I figured that it was probably a Win7-Win10 thing, so I tried to rebuild but...
by ghjmaui
Mon Aug 19, 2013 9:18 pm
Forum: C++ Development
Topic: how to use TCP in wx to non-wx?
Replies: 2
Views: 1229

how to use TCP in wx to non-wx?

Hello- I could find nothing in the forum about this, and I hope I am not repeating another topic entry. I would like to connect over IP to an application on another machine from my MSW wxWidgets GUI, but the application on the other machine is not running any sort of wxWidgets application (it is an ...
by ghjmaui
Tue May 28, 2013 11:10 pm
Forum: C++ Development
Topic: msgqueue.h missing from wxPack_v2.8.12.07
Replies: 1
Views: 711

msgqueue.h missing from wxPack_v2.8.12.07

Hi- I just had an associate install wx so he could compile some of my code and he reported that msgqueue.h was missing. I just downloaded wxPack_v2.8.12.07.exe and reinstalled wx and also found that msgqueue.h is apparently not in SourceCode/Libraries/wxWidgets2.8/include/wx where it ought to be. He...
by ghjmaui
Fri Dec 28, 2012 8:39 pm
Forum: General Development
Topic: getting events on wxButton depreseed as well as released
Replies: 2
Views: 3760

Re: getting events on wxButton depreseed as well as released

OK then! I took your advice to "use the source, Luke". I will not presume to suggest this a permanent modification, but it is simple and direct, and a user can now capture both left-button states of down click and up click. I just respond here to memorialize what I did and maybe others mig...
by ghjmaui
Fri Nov 02, 2012 2:33 am
Forum: General Development
Topic: getting events on wxButton depreseed as well as released
Replies: 2
Views: 3760

getting events on wxButton depreseed as well as released

Hi- I have seen a few attempted workarounds for this surprisingly common problem in several forum posts (as well as a few "it doesn't do it, so don't bother trying"), but I would like to generalize it and ask specifically how to solve the problem directly. wxButton only sends an event when...