Hi all,
Have just managed to get entry breaks working in Servoy Developer 5.1.2. Now if I switch them on, flick over to my Smart Client, it break immediately triggers because of the row background colour calcs I’m using everywhere.
What I would like to do is:
- In Smart client click something and end up in the debugger at the beginning of the action method. This was very handy in Servoy 3.
I have seen there is a shortcut in Smart Client to bring up the form you click on in Eclipse. Is there a similar thing for a button or an action?
Or can I get Eclipse to ignore breaking my background colour calculations?
swingman:
Or can I get Eclipse to ignore breaking my background colour calculations?
I have a similar request as well. I am using Greg Pierce’s excellent mod_datejs module and the method to initialise the thing always drops me into the debugger when I have the global exceptionbreak enabled. This is due to the fact that the original datejs code depends on throwing exceptions here and there.
Does any of the Eclipse IDE guru’s know how to skip a certain piece of code (or whole method) to be ‘watched’ by the debugger ?
dont think that is possible…
But global entry break is a horrible thing anyway
(we dont have this in java and if we had i wouldnt use it…)
If you just want to know what is called and where you want to set a break point then. use the profiler view, switch it on and press the button you want and you see all the things that it calls
then you can set a breakpoint at the perfect location and you only break there instead of all over the place in many places you dont want to break…
The Profiler view works like a charm…
The problem with going from 3.x to 5.x is working out the new ways of doing things…
Thanks