Got another problem since i've updated from v. 2.01 to 2.052.
My program got a main window with a menu and a additional window which contains some buttons.
When i press items in the menu of the main window all works fine, but when i press buttons in the additional window the program calls also the menu-item-code.
There must be a conflict between some events i think, but i don't know what it could be..
The problem appears in all versions but in the 2.01.
EDIT:
Here an example:
For the main menu my code is:
if eventData()=about and eventType()=MENU_CLICK
message "(C)Me"
endif
now the code for the new window:
if eventType()=MOUSE_CLICK and eventSource()=selFolder
folder$=folderDialog()
endif
The variables about and selFolder are set with the handle of the gadget.
Now when i click on the folder button in the new window the about menu pops up, too...