Search found 1125 matches

by utelle
Wed Mar 13, 2024 12:14 pm
Forum: General Development
Topic: wither wxCode?
Replies: 2
Views: 93

Re: wither wxCode?

the wxCode page has a component list page that is empty and a search page which never returns any results, As mentioned on the wxCode startpage the wxCode project on SourceForge has been retired in January 2018. Nevertheless, the code the components can still be accessed from the wxCode SourceForge...
by utelle
Mon Feb 26, 2024 3:49 pm
Forum: General Development
Topic: wxBombs bug
Replies: 15
Views: 631

Re: wxBombs bug

Check this page on the web site - https://www.wxwidgets.org/support/mailing-lists/. Unfortunatelly when I try to contact mailing list administrator it shows me no E-mail. Can you give me the E-mail using PM? Have you actually checked the webpage, ONEEYEMAN pointed you to? Under the heading "Av...
by utelle
Fri Feb 23, 2024 4:31 pm
Forum: General Development
Topic: wxBombs bug
Replies: 15
Views: 631

Re: wxBombs bug

However, I seriously doubt that as the demos are not really maintained - all the core devs really care about are samples and tests. This report is nice to have and probably should be reported, but it is up to you to decide if you want that fixed. That was exactly my point. Well, NOT reporting bugs ...
by utelle
Sat Feb 17, 2024 10:01 am
Forum: C++ Development
Topic: Broadcast of wxCommandEvent to all windows in application.
Replies: 3
Views: 208

Re: Broadcast of wxCommandEvent to all windows in application.

I wonder what the best way is to broadcast a wxCommandEvent message to all (top) windows in the application. (I assume it is possible but did not find the solution in the documentation until now) AFAIK wxWidgets doesn't offer methods to broadcast any events. That is, you will have to implement this...
by utelle
Sat Feb 10, 2024 9:50 am
Forum: Compiler / Linking / IDE Related
Topic: Software have problem at start
Replies: 62
Views: 3216

Re: Software have problem at start

now i understand why all people saying dont use C++. because releasing a app is harder then coding it itself. stupid. This is nonsense. The problems you described in the various posts in this thread have almost nothing to do with C++, but with the tools you are using - and the specific difficulties...
by utelle
Wed Jan 10, 2024 9:15 pm
Forum: General Development
Topic: Porting from MFC to wxWidgets
Replies: 12
Views: 23143

Re: Porting from MFC to wxWidgets

Hm, in general we have the biggest concerns with our complex dialog interaction, when migrating from MFC to wxWidgets. If there are different messaging system in MFC and wxWidgets that could cause problems if we merge MFC dialogs in wxWidgets applications. It seems that we simply have to try it out...
by utelle
Thu Dec 21, 2023 10:34 am
Forum: wxCode
Topic: wxPdfDocument SetProtection
Replies: 2
Views: 4603

Re: wxPdfDocument SetProtection

I would like to know, why only some permission flags are allowed. Well, actually there is no specific reason. The method for setting access permissions was implemented already in the early days of this project based on an existing FPDF extension (which had those restrictions). Up to now no one comp...
by utelle
Mon Dec 18, 2023 9:56 pm
Forum: Platform Related Issues
Topic: How to change wxDatepickerCtrl format date?
Replies: 1
Views: 2281

Re: How to change wxDatepickerCtrl format date?

I am currently writing an app in WxWidgets 3.0 on Linux and I wish to change the date time format that it shows in the text field to "dd/mm/yyyy". As far as I can tell the date formatting under Linux uses the settings of the current wxLocale in wxWidgets 3.0. That is, you should set a wxL...
by utelle
Tue Nov 28, 2023 10:11 pm
Forum: wxCode
Topic: wxPdfDocument MSWindows build help needed
Replies: 5
Views: 4696

Re: wxPdfDocument MSWindows build help needed

Thank you. Editing the config.gcc file was the missing link. I made that change (with 1220 instead of 1320) and compiled and linked. Thank you for confirming that you now can compile wxPdfDocument successfully. I appreciate you for holding my hand through this. You are welcome. I was trying to figu...
by utelle
Tue Nov 28, 2023 7:06 pm
Forum: wxCode
Topic: wxPdfDocument MSWindows build help needed
Replies: 5
Views: 4696

Re: wxPdfDocument MSWindows build help needed

I mod'ed the config but made no difference. It looks like a compile problem to me like it doesn't know where the headers are. However, it has successfully looked through a couple of wx3.2.4 header files and can't find setup.h. That makes me think there is an environment variable that sets an includ...
by utelle
Tue Nov 28, 2023 2:24 pm
Forum: wxCode
Topic: wxPdfDocument MSWindows build help needed
Replies: 5
Views: 4696

Re: wxPdfDocument MSWindows build help needed

I have been developing a wxWidgets app that generates a pdf file as an output. All my work so far has been on linux since I swore off MS windows many years ago. But I decided it was time to build a windows version. I understand you very well, although in my case it is the other way around. My main ...
by utelle
Tue Nov 28, 2023 1:46 pm
Forum: wxCode
Topic: Pdf document adds multiple times the first image only
Replies: 2
Views: 4152

Re: Pdf document adds multiple times the first image only

From a database extracting wxImages i need to insert in a new pdf file. Using the code bellow the pdf document adds multiple times the first image only. Why is that? Have i problem on code? Yes. The behaviour you observe is not a bug, it is a feature. The problem lies in the parameters given to the...
by utelle
Wed Nov 22, 2023 4:35 pm
Forum: Database Related
Topic: Another wxSQLite3 Installation Question
Replies: 19
Views: 25904

Re: Another wxSQLite3 Installation Question

First of all, you should not hijack an old unrelated topic. Your question has nothing to do with installing wxSQLite3, but with using a database in general. In the future please open a new topic. Currently I am working on building a wxwidgets app, which has wxListCTRl table of the elements, each tim...
by utelle
Sun Nov 05, 2023 11:51 am
Forum: Database Related
Topic: Compiling wxSqlite3 with VS 2015 Community
Replies: 2
Views: 3513

Re: Compiling wxSqlite3 with VS 2015 Community

I compiled wx3.2.3 with MS Visual Studio 2015 Community+ wx3.2.3 installer package,just using the sln file in the build sub-folder and everything goes smoothly. After that I create a WXWIN in the sytem environment points to the new vc compiled wx3.2.3 root. But when I tried to use the same way to c...
by utelle
Tue Oct 31, 2023 9:53 pm
Forum: Compiler / Linking / IDE Related
Topic: Frustrated - compiling wxsqlite3 with mingw
Replies: 8
Views: 3843

Re: Frustrated - compiling wxsqlite3 with mingw

Sorry for the late response, but I detected this thread just now accidentally. Now a question, should the libquadmath.a not be linked during the creation of the wxsqlite3 libraries. So looking at the wxsqlite.make file, it should be added as a further -l file. I hope that I surmise correctly! I thin...