Re: Having trouble modifying tiny demo program
- Posted by ghaberek (admin) Jun 16, 2009
- 905 views
Each control in the wxEuphoria docs should have its parameters listed. Anything with [=value] means that parameter is optional, and the value in brackets is the default. The version 13 docs are more comprehensive than the version 12 docs, as I painstakingly updated each control to list its required parameters in bold. Here are the parameters for wxScrolledWindow. As you can see, it does not take a "text" parameter, which you're feeding it...
Creation Parameters
- atom parent
- integer id [= -1]
- integer x [= -1]
- integer y [= -1]
- integer cx [= -1]
- integer cy [= -1]
- atom style [= wxHSCROL+wxVSCROLL]
- wxHSCROLL
- wxVSCROLL
-Greg