The answer is definitely yes.
The simplest way to do this is to simply put in your code this line:
callbackToCall (panel, control, event, callbackData, eventData1, eventData2);
obviously you have to fill in parameters according to what your callback expects: if your callback doesn't use some of them (for example callbackData and/or eventData), you can put 0 or NULL as needed. In userint.h there is an interesting table that lists all events with their associated macro (symbolic name) and the contents of eventData parameters when the function is generated by the user interface: you can use it as a trace for your job.
The other way is to use the toolbox function
CallCtrlCallback (panel, control, event, eventData1, eventData2, &rtnval);
this is better if you use
to chain control callbacks using the appropriate function in the programmer's toolbox.
The online help for this function can help you in filling the parameters of the function. In order to use this function you must include the programmer's toolbox in your project either as an instruments or as a library. The toolbox is located in the toolslib\toolbox directory.
Roberto