THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 15/07/2008 at 01:32, xxxxxxxx wrote:
User Information:
Cinema 4D Version: 10.5
Platform:
Language(s) : C++ ;
---------
Hi!
I have a problem with the GeDialog. Can I source out some commands?
For example
> `
\> class myGUI : public GeDialog
\> {
\>
\> public:
\>
\> void createLayout()
\> {
\> create_my_own_gui();
\> }
\>
\> }
\>
\>
\>
\> void create_my_own_gui()
\> {
\> AddStaticText(....);
\> }
\>
`
In this case, my compiler reports "Cannot use AddStaticText without an object."
What can I do? Thanks