THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 09/07/2008 at 15:59, xxxxxxxx wrote:
Maybe, but I have no idea where. I gave every single element a unique long value in the *.h-file. As I said, the buttons work fine this way, but not the other things. This is my code:
> `
\> Bool x::Message(GeListNode *node, LONG type, void *t_data)
\> {
\> switch (type)
\> {
\> case MSG_DESCRIPTION_COMMAND:
\> {
\> DescriptionCommand *dc = (DescriptionCommand* ) t_data;
\>
\> if (dc->id[0].id==REFRESH)
\> {
\> ...
\> }
\> if (dc->id[0].id==NEUE_ZUFALLSWERTE)
\> {
\> ...
\>
\> }
\> }
\> case MSG_DESCRIPTION_VALIDATE:
\> {
\> DescriptionCommand *dc = (DescriptionCommand* ) t_data;
\> GePrint(LongToString(dc->id[0].id));
\>
\> }
\> }
\> return true;
\> }
\>
`