-
I found the problem, for checkboxes the JSClick handler have to be used. It seams that IE (6/7/Cool do not fire the onchange event, when changing the status of a checkbox.
2009-05-13 08:59:28 UTC in VCL for PHP
-
I use a checkbox in my form. Changing this checkbox disables/enables other elements on the form, i.e. when the checkbox is checked the elements are enabled.
Using this example:
function CheckBox1JSChange($sender, $params)
{
?>
var checkbox = findObj( "CheckBox1" );
var item = findObj( "CheckBox2" );
if( checkbox && item )
{
item.disabled = !checkbox.checked;
}
2009-05-06 16:30:03 UTC in VCL for PHP
-
I found the problem: I use the VPN client Check Point SecuRemote. This client listens on port 9000 and the DBGP plugin also tries to listen on port 9000 -> exception in the DLL.
Is it possible, to insert in the config dialog the possibility to enter an alternative listen port?
best regards
Martin.
2009-03-23 14:42:28 UTC in Notepad++ Plugins
-
Hi
when I start the debugger via menu /Plugins/DBGp/Debugger notepad++ crashes.
Dump file is available - where can I send it?
best regards
Martin.
2009-03-21 16:31:02 UTC in Notepad++ Plugins