has anyone done this yet? I would like to give it a go but I don't have a clue where to start.
For instance, if I wanted to create a new type of textarea, would I derive it from an existing textarea or do I have to go back to the based control?
In delphi, you would simply extend the class that most closely represents your new class and override the required methods.
How would you override the Paint() method? (or whatever the BMax equivalent is).
For instance, if I wanted to create a new type of textarea, would I derive it from an existing textarea or do I have to go back to the based control?
In delphi, you would simply extend the class that most closely represents your new class and override the required methods.
How would you override the Paint() method? (or whatever the BMax equivalent is).