Hi everyone, I have an excel-sheet with over 1000 rows which I want to read into a database. So I installed wxSqlite3 (1.4.2) cause I didnt want the end-user to have a server running. But I didnt find any wxSqlite documentation about how to handle excel-files or dbf-files -> I downloaded SQLite Anal...
Hi everyone, How would you manage it, to only allow special input into a ( in this case ) single-line textcontrol :?: Because I did not find any methods for this case, I think it would work by catching the wxKeyEvent's inside of the textcontrol. After verifying if the pressed key is allowed accept t...
Hi Perhaps it would help you to use Anthemion DialogBlocks 1.99 . You can play around with sizers and let it create your c++-sourcecode. Then browse the code and perhaps you will understand a little bit more.. I did :wink: ! And when you generate your project don't forget to uncheck "generate C++ fo...
:wink: In fact you have to assign a wxBitmap to your custom wxBitmapButton with transparent borders. Problem. To get a transparent wxBitmap I would do the following. 1)Get some tool to convert your *.png ( I prefer to work with png) to a *.cpp. I use the "bin2c.c". But ImageMagick could also do it. ...
Hi robal, I never worked with toolbars but when I look at wxToolBar you have to differ between the AddTool and the AddControl methods. The last one is especially for controls like your "damn" :wink: combobox. But I don't know how far this counts when implementing your toolbar with resources :cry: . ...
Hi fm, I think that when processing a mouseevent, like EVT_LEFT_DOWN, you have to use the events from wxMouseEvent . And as you can see it is not possible to pass any ID to the eventhandling-macros to resolve which object in your window has been clicked. But perhaps you could use GetPosition(..) to ...
Hi Rukawa when you click on the arrow-button on the scrollbar you perform a pagescroll event EVT_COMMAND_SCROLL_PAGEUP(id, func) Process wxEVT_SCROLL_PAGEUP page up events. EVT_COMMAND_SCROLL_PAGEDOWN(id, func) Process wxEVT_SCROLL_PAGEDOWN page down events. And usual the scrollbar knows how far it ...