Search found 2409 matches

by evstevemd
Thu Aug 03, 2023 1:40 pm
Forum: Announcements and Discoveries
Topic: ANN: First release of wxSimpleJSON
Replies: 8
Views: 9994

Re: ANN: First release of wxSimpleJSON

Done. Seen them, thanks. Will find time and work on them! No rush. My code that uses JSON is not under active development. In general, i'd have to use your library in a real application, before i can answer that. My current remarks were only based on the public API and the sample code. Cool, any ti...
by evstevemd
Thu Aug 03, 2023 10:48 am
Forum: Announcements and Discoveries
Topic: ANN: First release of wxSimpleJSON
Replies: 8
Views: 9994

Re: ANN: First release of wxSimpleJSON

Sorry, i won't have time to contribute to this :oops: Even opening tickets? I could open them myself but you put it so well that I would like it done perfectly Would you consider wxSimpleJSON? As soon as it's better than my current solution, sure ;) From the outset, what are the features that are m...
by evstevemd
Thu Aug 03, 2023 10:33 am
Forum: Announcements and Discoveries
Topic: ANN: First release of wxSimpleJSON
Replies: 8
Views: 9994

Re: ANN: First release of wxSimpleJSON

Thanks for the contribution. I appreciate your kind words. Thank you! I wish you'd use the [] operator to shorten the code though. E.g. instead of: auto width = resolution->GetProperty("width")->GetValueNumber(); Can you open a ticket with details of suggestions or even better a PR. That ...
by evstevemd
Thu Aug 03, 2023 7:48 am
Forum: Announcements and Discoveries
Topic: ANN: New version of wxSQLite+
Replies: 1
Views: 5879

Re: ANN: New version of wxSQLite+

Merci Beacoup!
Je vais tester.
by evstevemd
Thu Aug 03, 2023 7:43 am
Forum: Announcements and Discoveries
Topic: ANN: First release of wxSimpleJSON
Replies: 8
Views: 9994

ANN: First release of wxSimpleJSON

wxSimpleJSON is a wrapper around CJSON making it breeze to work with wxWidgets and JSON.
I'm grateful to announce first release ever.
Please test and file bugs at https://github.com/hosannahighertech/wxSimpleJSON
Any help is appreciated!
by evstevemd
Sat Mar 25, 2023 5:40 am
Forum: C++ Development
Topic: Check if a specific index in a vector is "filled"
Replies: 7
Views: 1460

Re: Check if a specific index in a vector is "filled"

.If I create a vector of wxStrings and don't put any data in it (using eg. push.back), the indexes are "empty" It means the vector have got nothing. So it is empty. No index exist because index means something If this is true, what about a vector with a class which is derived of wxPanels?...
by evstevemd
Fri Mar 24, 2023 6:10 am
Forum: C++ Development
Topic: Check if a specific index in a vector is "filled"
Replies: 7
Views: 1460

Re: Check if a specific index in a vector is "filled"

I assume that vector is std::vector. If so check with empty() an example copied verbatim from cpp dot com https://cplusplus.com/reference/vector/vector/empty/ // vector::empty #include <iostream> #include <vector> int main () { std::vector<int> myvector; int sum (0); for (int i=1;i<=10;i++) myvector...
by evstevemd
Mon Mar 20, 2023 5:24 am
Forum: C++ Development
Topic: Any one have worked on ESC POS for QR Code
Replies: 4
Views: 796

Re: Any one have worked on ESC POS for QR Code

Cutting story short, do you know any way to convert image to "std::vector< std::vector<bool> >" which seems to be image format printer understands? That seems to be just an array of black or white pixels. The only question is where/how the dimensions are defined. I found this question tha...
by evstevemd
Sun Mar 19, 2023 6:05 pm
Forum: C++ Development
Topic: Any one have worked on ESC POS for QR Code
Replies: 4
Views: 796

Re: Any one have worked on ESC POS for QR Code

Hi DM, Can the printer be used like a "normal" bitmap based printer? In that case it might be easier to create the barcode yourself using zxing. Unfortunately, no. Thermal printers have its own weird commands to do that. But your idea is the same I was thinking but now with this library I ...
by evstevemd
Sun Mar 19, 2023 3:05 pm
Forum: Compiler / Linking / IDE Related
Topic: Why is CMake find_xxx in Windows such useless piece of software?
Replies: 3
Views: 3213

Re: Why is CMake find_xxx in Windows such useless piece of software?

Hi PB, Sorry, but this is a non-issue. In particular, finding* wxWidgets is easy, if you have it in one of the standard locations, it works out of the box. Even if you do not, just tell CMake where it is, using a documented variable, and it still works. *using wxWidgets is also easy as it does not d...
by evstevemd
Sun Mar 19, 2023 3:03 pm
Forum: wxCode
Topic: Moderated list of useful wxWidgets extensions
Replies: 15
Views: 18005

Re: Moderated list of useful wxWidgets extensions

Thanks for sharing!
by evstevemd
Sun Mar 19, 2023 3:00 pm
Forum: C++ Development
Topic: Any one have worked on ESC POS for QR Code
Replies: 4
Views: 796

Any one have worked on ESC POS for QR Code

Hi, I ama looking toward integrating Thermal Printer and was looking at C/C++ library. I found this one which seems to cover eveything except Barcode. I'm not expert on ESC POS Commands and I was thinking of generating QR code as Image using something like ZXing and import that as Image, but that se...
by evstevemd
Wed Nov 09, 2022 10:44 pm
Forum: Compiler / Linking / IDE Related
Topic: Why is CMake find_xxx in Windows such useless piece of software?
Replies: 3
Views: 3213

Why is CMake find_xxx in Windows such useless piece of software?

CMake works great with to find packages i *nix. But it is pretty hard to use in Windows. I have been away, off Windows for quiet looong time and my life was breeze. Now that I have to compile and package that app for Windows, I have literally used more than two days, gazillion of hours each only to ...
by evstevemd
Wed Nov 09, 2022 4:07 pm
Forum: C++ Development
Topic: Get text from other wxTextCtrl
Replies: 9
Views: 2286

Re: Get text from other wxTextCtrl

Since you seem to be into something like PoS app, check out wxDataViewListCtrl. It makes such apps a breeze to make. After getting used to it, of course!